summaryrefslogtreecommitdiffstats
path: root/extensions/BugModal/web/bug_modal.js
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2015-06-05 06:40:01 +0200
committerByron Jones <glob@mozilla.com>2015-06-05 06:40:01 +0200
commit907fbcfd19dfa436567bf4a75f566b8f81f43298 (patch)
treebdbe5df647bdc5bbdbfe0a228bdb9d56d864ba40 /extensions/BugModal/web/bug_modal.js
parenta34e675b4ac3ebce28c2a0450fe75f8df38c540c (diff)
downloadbugzilla-907fbcfd19dfa436567bf4a75f566b8f81f43298.tar.gz
bugzilla-907fbcfd19dfa436567bf4a75f566b8f81f43298.tar.xz
Bug 1146775: implement comment collapse all and by tag
Diffstat (limited to 'extensions/BugModal/web/bug_modal.js')
-rw-r--r--extensions/BugModal/web/bug_modal.js45
1 files changed, 23 insertions, 22 deletions
diff --git a/extensions/BugModal/web/bug_modal.js b/extensions/BugModal/web/bug_modal.js
index 473de438e..87cfcffdf 100644
--- a/extensions/BugModal/web/bug_modal.js
+++ b/extensions/BugModal/web/bug_modal.js
@@ -25,19 +25,6 @@ $(function() {
// products with descriptions (also lazy-loaded)
var products = [];
- // scroll to an element
- function scroll_to(el, complete) {
- var offset = el.offset();
- $('html, body')
- .animate({
- scrollTop: offset.top - 20,
- scrollLeft: offset.left = 20
- },
- 200,
- complete
- );
- }
-
// expand/collapse module
function slide_module(module, action, fast) {
if (!module.attr('id'))
@@ -120,7 +107,7 @@ $(function() {
.click(function(event) {
event.preventDefault();
var id = $('.comment:last')[0].parentNode.id;
- scroll_to($('#' + id));
+ $.scrollTo($('#' + id));
window.location.hash = id;
});
@@ -128,7 +115,7 @@ $(function() {
$('#top-btn')
.click(function(event) {
event.preventDefault();
- scroll_to($('body'));
+ $.scrollTo($('body'));
});
// use non-native tooltips for relative times and bug summaries
@@ -450,14 +437,14 @@ $(function() {
event.preventDefault();
// focus first to grow the textarea, so we scroll to the correct location
$('#comment').focus();
- scroll_to($('#bottom-save-btn'));
+ $.scrollTo($('#bottom-save-btn'));
});
// needinfo in people section -> scroll to near-comment ui
$('#needinfo-scroll')
.click(function(event) {
event.preventDefault();
- scroll_to($('#needinfo_role'), function() { $('#needinfo_role').focus(); });
+ $.scrollTo($('#needinfo_role'), function() { $('#needinfo_role').focus(); });
});
// knob
@@ -569,7 +556,7 @@ $(function() {
if ($('#comment').val() != reply_text) {
$('#comment').val($('#comment').val() + reply_text);
}
- scroll_to($('#comment'), function() { $('#comment').focus(); });
+ $.scrollTo($('#comment'), function() { $('#comment').focus(); });
});
// add comment --> enlarge on focus
@@ -606,10 +593,10 @@ $(function() {
$('#resolution').val($(event.target).text()).change();
$('#top-save-btn').show();
if ($(event.target).text() == "DUPLICATE") {
- scroll_to($('body'));
+ $.scrollTo($('body'));
}
else {
- scroll_to($('body'), function() { $('#resolution').focus(); });
+ $.scrollTo($('body'), function() { $('#resolution').focus(); });
}
});
$('.status-btn')
@@ -619,7 +606,7 @@ $(function() {
$('#field-status-edit').show();
$('#bug_status').val($(event.target).data('status')).change();
$('#top-save-btn').show();
- scroll_to($('body'), function() { $('#bug_status').focus(); });
+ $.scrollTo($('body'), function() { $('#bug_status').focus(); });
});
// vote button
@@ -651,7 +638,7 @@ $(function() {
if (current != text) {
$('#comment').val(current + text);
$('#comment').focus();
- scroll_to($('#bottom-save-btn'));
+ $.scrollTo($('#bottom-save-btn'));
}
});
@@ -1158,7 +1145,21 @@ function lb_close(event) {
}
// stick with inArray/indexOf and return -1 on no match
return -1;
+ },
+
+ // Animated scroll to bring an element into view
+ scrollTo: function(el, complete) {
+ var offset = el.offset();
+ $('html, body')
+ .animate({
+ scrollTop: offset.top - 20,
+ scrollLeft: offset.left = 20
+ },
+ 200,
+ complete
+ );
}
+
});
})(jQuery);