diff options
author | Byron Jones <glob@mozilla.com> | 2015-05-28 09:44:19 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-05-28 09:44:19 +0200 |
commit | 09f53409bf172a3d6452d992e3afce7cd7879f12 (patch) | |
tree | 74db9f6a844de699875fedf38e37b5bff5e9dafe /extensions | |
parent | 236be0474b114ea15a57d61d3be5931a612fb155 (diff) | |
download | bugzilla-09f53409bf172a3d6452d992e3afce7cd7879f12.tar.gz bugzilla-09f53409bf172a3d6452d992e3afce7cd7879f12.tar.xz |
Bug 1146787: "take" buttons missing in edit mode
Diffstat (limited to 'extensions')
4 files changed, 36 insertions, 5 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 fa87066fd..095724e67 100644 --- a/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl @@ -455,7 +455,7 @@ [% IF unassigned %] <i>Unassigned</i> [% IF bug.check_can_change_field("assigned_to", 0, 1) %] - <button type="button" id="take-btn" class="minor">Take</button> + <button type="button" class="take-btn minor" data-field="assigned_to">Take</button> [% END %] [% ELSE %] [% INCLUDE bug_modal/user.html.tmpl u=bug.assigned_to %] @@ -465,6 +465,11 @@ field = bug_fields.assigned_to field_type = constants.FIELD_TYPE_USER hide_on_view = 1 + action = { + class = "take-btn" + caption = "Take" + hidden = bug.assigned_to.id == user.id || !user.in_group("editbugs") + } append_content = 1 default = bug.component_obj.default_assignee.login %] 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 b11152bf1..c988bd645 100644 --- a/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl @@ -25,6 +25,11 @@ # append_content: (boolean) when called as a WRAPPER, the content will be appended to the # edit html instead of replacing it. forces edit_only (default: false); # default: (string) default value (eg. used as a placeholder in user fields) + # action: (hash) show a button to the right of the edit field (user fields only currently). keys: + # id: (string) optional button id + # class: (string) optional button class + # caption: (string) button caption + # hidden: (boolean) don't show the button (default: false) #%] [% @@ -191,6 +196,14 @@ END; <input name="[% name FILTER html %]" id="[% name FILTER html %]" value="[% value FILTER html %]"> [% CASE constants.FIELD_TYPE_USER %] + [% IF action && !action.hidden %] + <button class="field-button minor [%= action.class FILTER html IF action.class %]" + data-field="[% name FILTER html %]" + [% IF action.id %]id="[% action.id FILTER html %]"[% END %]> + [% action.caption FILTER html %] + </button> + <div class="field-edit-container"> + [% END %] [%# single user %] [% INCLUDE global/userselect.html.tmpl id = name @@ -199,6 +212,9 @@ END; classes = [ "bz_userfield" ] placeholder = default %] + [% IF action && !action.hidden %] + </div> + [% END %] [% CASE constants.FIELD_TYPE_USERS %] [%# multiple users %] diff --git a/extensions/BugModal/web/bug_modal.css b/extensions/BugModal/web/bug_modal.css index e69bcaa2a..afa4719c4 100644 --- a/extensions/BugModal/web/bug_modal.css +++ b/extensions/BugModal/web/bug_modal.css @@ -206,6 +206,15 @@ select[multiple], .text_input, .yui-ac-input, input { width: 170px; } +.field-button { + float: right; + margin-left: 8px; +} + +.field-edit-container { + overflow-y: hidden; +} + /* field types */ input[type="number"] { diff --git a/extensions/BugModal/web/bug_modal.js b/extensions/BugModal/web/bug_modal.js index 4c4d83ad8..a9ff51452 100644 --- a/extensions/BugModal/web/bug_modal.js +++ b/extensions/BugModal/web/bug_modal.js @@ -544,12 +544,13 @@ $(function() { }); // take button - $('#take-btn') + $('.take-btn') .click(function(event) { event.preventDefault(); - $('#field-assigned_to.edit-hide').hide(); - $('#field-assigned_to.edit-show').show(); - $('#assigned_to').val(BUGZILLA.user.login).focus().select(); + var field = $(this).data('field'); + $('#field-' + field + '.edit-hide').hide(); + $('#field-' + field + '.edit-show').show(); + $('#' + field).val(BUGZILLA.user.login).focus().select(); $('#top-save-btn').show(); }); |