diff options
author | Byron Jones <glob@mozilla.com> | 2015-04-07 07:54:20 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-04-07 07:54:20 +0200 |
commit | 63567a9c3bec7acd722db01929ad7d64d36d02df (patch) | |
tree | 38440ae2a28fc792740595a0888e7954e728bc72 /extensions/BugModal/template | |
parent | 6d5948948b84ac9e244553a5c94d0ab4490b039b (diff) | |
download | bugzilla-63567a9c3bec7acd722db01929ad7d64d36d02df.tar.gz bugzilla-63567a9c3bec7acd722db01929ad7d64d36d02df.tar.xz |
Bug 1146760: cannot add other people to the cc list
Diffstat (limited to 'extensions/BugModal/template')
-rw-r--r-- | extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl | 14 | ||||
-rw-r--r-- | extensions/BugModal/template/en/default/bug_modal/field.html.tmpl | 2 |
2 files changed, 15 insertions, 1 deletions
diff --git a/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl index 29b2a1e40..75aab63d3 100644 --- a/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl @@ -518,6 +518,20 @@ label = "CC" hide_on_view = bug.cc.size == 0 %] + + [% IF user.id %] + <button type="button" id="add-cc-btn" class="minor">Add</button> + <div id="add-cc-container" style="display:none"> + [% INCLUDE global/userselect.html.tmpl + id = "add-cc" + name = "newcc" + value = "" + classes = [ "bz_userfield" ] + multiple = 5 + %] + </div> + [% END %] + [% IF bug.cc && bug.cc.size %] <span id="cc-latch">▸</span> <span id="cc-summary"> diff --git a/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl index 787b8d9f1..d89c22868 100644 --- a/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl @@ -280,7 +280,7 @@ END; [% END %] [% IF edit %] - <button id="[% name FILTER html %]-btn" class="bug-urls-btn minor">Add</button> + <button type="button" id="[% name FILTER html %]-btn" class="bug-urls-btn minor">Add</button> <input id="[% name FILTER html %]" name="[% name FILTER html %]" style="display:none"> [% END %] [% END %] |