summaryrefslogtreecommitdiffstats
path: root/extensions/BugModal/web/bug_modal.js
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2015-11-12 05:34:38 +0100
committerByron Jones <glob@mozilla.com>2015-11-12 05:34:38 +0100
commit771547cd05b0266e4e0cf5682bb0e350f931a3bd (patch)
tree25fefa6ab151846c5ab16e4bfef667b69ade06a9 /extensions/BugModal/web/bug_modal.js
parentb4bfae7e1ece8c214e173865b1600c1f2ec11c9c (diff)
downloadbugzilla-771547cd05b0266e4e0cf5682bb0e350f931a3bd.tar.gz
bugzilla-771547cd05b0266e4e0cf5682bb0e350f931a3bd.tar.xz
Bug 1223669 - don't scroll to the top of the page when clicking on the resolution buttons
Diffstat (limited to 'extensions/BugModal/web/bug_modal.js')
-rw-r--r--extensions/BugModal/web/bug_modal.js55
1 files changed, 33 insertions, 22 deletions
diff --git a/extensions/BugModal/web/bug_modal.js b/extensions/BugModal/web/bug_modal.js
index a4ab7b69b..fc6e12bc8 100644
--- a/extensions/BugModal/web/bug_modal.js
+++ b/extensions/BugModal/web/bug_modal.js
@@ -678,38 +678,52 @@ $(function() {
});
// knob
- $('#bug_status')
+ $('#bug_status, #bottom-bug_status')
.change(function(event) {
- if (event.target.value == "RESOLVED" || event.target.value == "VERIFIED") {
- $('#resolution').change().show();
+ var that = $(this);
+ var val = that.val();
+ var other = $(that.attr('id') == 'bug_status' ? '#bottom-bug_status' : '#bug_status');
+ other.val(val);
+ if (val == "RESOLVED" || val == "VERIFIED") {
+ $('#resolution, #bottom-resolution').change().show();
}
else {
- $('#resolution').hide();
- $('#duplicate-container').hide();
- $('#mark-as-dup-btn').show();
+ $('#resolution, #bottom-resolution').hide();
+ $('#duplicate-container, #bottom-duplicate-container').hide();
+ $('#mark-as-dup-btn, #bottom-mark-as-dup-btn').show();
}
})
.change();
- $('#resolution')
+ $('#resolution, #bottom-resolution')
.change(function(event) {
+ var that = $(this);
+ var val = that.val();
+ var other = $(that.attr('id') == 'resolution' ? '#bottom-resolution' : '#resolution');
+ other.val(val);
var bug_status = $('#bug_status').val();
- if ((bug_status == "RESOLVED" || bug_status == "VERIFIED") && event.target.value == "DUPLICATE") {
- $('#duplicate-container').show();
- $('#mark-as-dup-btn').hide();
- $('#dup_id').focus();
+ if ((bug_status == "RESOLVED" || bug_status == "VERIFIED") && val == "DUPLICATE") {
+ $('#duplicate-container, #bottom-duplicate-container').show();
+ $('#mark-as-dup-btn, #bottom-mark-as-dup-btn').hide();
+ $(that.attr('id') == 'resolution' ? '#dup_id' : '#bottom-dup_id').focus();
}
else {
- $('#duplicate-container').hide();
- $('#mark-as-dup-btn').show();
+ $('#duplicate-container, #bottom-duplicate-container').hide();
+ $('#mark-as-dup-btn, #bottom-mark-as-dup-btn').show();
}
})
.change();
- $('#mark-as-dup-btn')
+ $('#mark-as-dup-btn, #bottom-mark-as-dup-btn')
.click(function(event) {
event.preventDefault();
$('#bug_status').val('RESOLVED').change();
$('#resolution').val('DUPLICATE').change();
- $('#dup_id').focus();
+ $($(this).attr('id') == 'mark-as-dup-btn' ? '#dup_id' : '#bottom-dup_id').focus();
+ });
+ $('#dup_id, #bottom-dup_id')
+ .change(function(event) {
+ var that = $(this);
+ var other = $(that.attr('id') == 'dup_id' ? '#bottom-dup_id' : '#dup_id');
+ other.val(that.val());
});
// add see-also button
@@ -825,12 +839,8 @@ $(function() {
$('#bug_status').val('RESOLVED').change();
$('#resolution').val($(event.target).text()).change();
$('#top-save-btn').show();
- if ($(event.target).text() == "DUPLICATE") {
- $.scrollTo($('body'));
- }
- else {
- $.scrollTo($('body'), function() { $('#resolution').focus(); });
- }
+ $('#resolve-as').hide();
+ $('#bottom-status').show();
});
$('.status-btn')
.click(function(event) {
@@ -839,7 +849,8 @@ $(function() {
$('#field-status-edit').show();
$('#bug_status').val($(event.target).data('status')).change();
$('#top-save-btn').show();
- $.scrollTo($('body'), function() { $('#bug_status').focus(); });
+ $('#resolve-as').hide();
+ $('#bottom-status').show();
});
// vote button