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.js10
1 files changed, 3 insertions, 7 deletions
diff --git a/extensions/BugModal/web/bug_modal.js b/extensions/BugModal/web/bug_modal.js
index 5a04709ec..6004c255b 100644
--- a/extensions/BugModal/web/bug_modal.js
+++ b/extensions/BugModal/web/bug_modal.js
@@ -868,16 +868,12 @@ $(function() {
if ($('#comment').val() != reply_text) {
$('#comment').val($('#comment').val() + reply_text);
}
+ autosize.update($('#comment'));
$.scrollTo($('#comment'), function() { $('#comment').focus(); });
});
- // add comment --> enlarge on focus
- if (BUGZILLA.user.settings.zoom_textareas) {
- $('#comment')
- .focus(function(event) {
- $(event.target).attr('rows', 25);
- });
- }
+ // auto-enlarge comment area (up to its max-height)
+ autosize($('#comment'));
// add comment --> private
$('#add-comment-private-cb')