diff options
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/BugModal/web/bug_modal.js | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/extensions/BugModal/web/bug_modal.js b/extensions/BugModal/web/bug_modal.js index fe1ae221e..473de438e 100644 --- a/extensions/BugModal/web/bug_modal.js +++ b/extensions/BugModal/web/bug_modal.js @@ -100,23 +100,6 @@ $(function() { $('#attachments tr.attach-obsolete').toggle(); }); - // comment collapse/expand - $('.comment-spinner') - .click(function(event) { - event.preventDefault(); - var spinner = $(event.target); - var id = spinner.attr('id').match(/\d+$/)[0]; - // switch to full header for initially collapsed comments - if (spinner.attr('id').match(/^ccs-/)) { - $('#cc-' + id).hide(); - $('#ch-' + id).show(); - } - $('#ct-' + id + ', #ctag-' + id).slideToggle('fast', function() { - $('#c' + id).find('.activity').toggle(); - spinner.text($('#ct-' + id + ':visible').length ? '-' : '+'); - }); - }); - // url --> unsafe warning $('.unsafe-url') .click(function(event) { |