diff options
Diffstat (limited to 'extensions/BugModal/web')
-rw-r--r-- | extensions/BugModal/web/bug_modal.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/extensions/BugModal/web/bug_modal.js b/extensions/BugModal/web/bug_modal.js index c3fd84e97..67d576728 100644 --- a/extensions/BugModal/web/bug_modal.js +++ b/extensions/BugModal/web/bug_modal.js @@ -628,13 +628,13 @@ $(function() { } }, { - name: '… in this product', + name: '\u2026 in this product', callback: function() { window.open('enter_bug.cgi?product=' + encodeURIComponent($('#product').val()), '_blank'); } }, { - name: '… in this component', + name: '\u2026 in this component', callback: function() { window.open('enter_bug.cgi?' + 'product=' + encodeURIComponent($('#product').val()) + @@ -642,7 +642,7 @@ $(function() { } }, { - name: '… that blocks this bug', + name: '\u2026 that blocks this bug', callback: function() { window.open('enter_bug.cgi?format=__default__' + '&product=' + encodeURIComponent($('#product').val()) + @@ -650,7 +650,7 @@ $(function() { } }, { - name: '… that depends on this bug', + name: '\u2026 that depends on this bug', callback: function() { window.open('enter_bug.cgi?format=__default__' + '&product=' + encodeURIComponent($('#product').val()) + @@ -658,7 +658,7 @@ $(function() { } }, { - name: '… as a clone of this bug', + name: '\u2026 as a clone of this bug', callback: function() { window.open('enter_bug.cgi?format=__default__' + '&product=' + encodeURIComponent($('#product').val()) + @@ -666,7 +666,7 @@ $(function() { } }, { - name: '… as a clone, in a different product', + name: '\u2026 as a clone, in a different product', callback: function() { window.open('enter_bug.cgi?format=__default__' + '&cloned_bug_id=' + BUGZILLA.bug_id, '_blank'); |