From 63567a9c3bec7acd722db01929ad7d64d36d02df Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Tue, 7 Apr 2015 13:54:20 +0800 Subject: Bug 1146760: cannot add other people to the cc list --- extensions/BugModal/web/bug_modal.css | 7 ++++++- extensions/BugModal/web/bug_modal.js | 12 +++++++++++- 2 files changed, 17 insertions(+), 2 deletions(-) (limited to 'extensions/BugModal/web') diff --git a/extensions/BugModal/web/bug_modal.css b/extensions/BugModal/web/bug_modal.css index 19c2854bb..694a726a5 100644 --- a/extensions/BugModal/web/bug_modal.css +++ b/extensions/BugModal/web/bug_modal.css @@ -285,7 +285,12 @@ input[type="number"] { #cc-list { max-height: 150px; - overflow-y: scroll; + overflow-y: auto; + clear: both; +} + +#add-cc-btn { + float: right; } /* actions */ diff --git a/extensions/BugModal/web/bug_modal.js b/extensions/BugModal/web/bug_modal.js index 7d8658f9b..37f01f479 100644 --- a/extensions/BugModal/web/bug_modal.js +++ b/extensions/BugModal/web/bug_modal.js @@ -331,7 +331,7 @@ $(function() { }); $('#mode-btn').prop('disabled', false); - // cc add/remove + // cc toggle (follow/stop following) $('#cc-btn') .click(function(event) { event.preventDefault(); @@ -725,6 +725,16 @@ $(function() { $('#cancel-btn').click(); } } ); + + // add cc button + $('#add-cc-btn') + .click(function(event) { + event.preventDefault(); + $('#add-cc-btn').hide(); + $('#add-cc-container').show(); + $('#top-save-btn').show(); + $('#add-cc').focus(); + }); }); function confirmUnsafeURL(url) { -- cgit v1.2.3-24-g4f1b