summaryrefslogtreecommitdiffstats
path: root/extensions/BugModal/web/bug_modal.js
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/BugModal/web/bug_modal.js')
-rw-r--r--extensions/BugModal/web/bug_modal.js23
1 files changed, 16 insertions, 7 deletions
diff --git a/extensions/BugModal/web/bug_modal.js b/extensions/BugModal/web/bug_modal.js
index 6004c255b..5ca0148e7 100644
--- a/extensions/BugModal/web/bug_modal.js
+++ b/extensions/BugModal/web/bug_modal.js
@@ -458,7 +458,7 @@ $(function() {
var rbs = $("#readable-bug-status");
var rbs_text = bugzillaReadableStatus.readable(rbs.data('readable-bug-status'));
rbs.text(rbs_text);
-
+
if (BUGZILLA.user.id === 0) return;
//
@@ -853,8 +853,7 @@ $(function() {
if (BUGZILLA.user.settings.quote_replies == 'quoted_reply') {
var text = $('#ct-' + comment_id).text();
reply_text = prefix + wrapReplyText(text);
- }
- else if (BUGZILLA.user.settings.quote_replies == 'simply_reply') {
+ } else if (BUGZILLA.user.settings.quote_replies == 'simply_reply') {
reply_text = prefix;
}
@@ -868,12 +867,22 @@ $(function() {
if ($('#comment').val() != reply_text) {
$('#comment').val($('#comment').val() + reply_text);
}
- autosize.update($('#comment'));
- $.scrollTo($('#comment'), function() { $('#comment').focus(); });
+ if (BUGZILLA.user.settings.autosize_comments) {
+ autosize.update($('#comment'));
+ }
+ $.scrollTo($('#comment'), function() {
+ $('#comment').focus();
+ });
});
- // auto-enlarge comment area (up to its max-height)
- autosize($('#comment'));
+ if (BUGZILLA.user.settings.autosize_comments) {
+ autosize($('#comment'));
+ } else if (BUGZILLA.user.settings.zoom_textareas) {
+ // add comment --> enlarge on focus
+ $('#comment').focus(function(event) {
+ $(event.target).attr('rows', 25);
+ });
+ }
// add comment --> private
$('#add-comment-private-cb')