diff options
author | Byron Jones <glob@mozilla.com> | 2015-03-24 14:20:07 +0100 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-03-24 14:20:07 +0100 |
commit | 8816bcc7a6518fb94af7840c6df183fd86f92009 (patch) | |
tree | 28dabcbadcc1efbe2c5683bc1a7152ec6d9d3920 /extensions/BugModal | |
parent | 3ac701266452d3509776fe58f9e1b2b8e9f33c1e (diff) | |
download | bugzilla-8816bcc7a6518fb94af7840c6df183fd86f92009.tar.gz bugzilla-8816bcc7a6518fb94af7840c6df183fd86f92009.tar.xz |
Bug 1146806: "new bug" menu has literal "…" instead of a horizontal ellipsis
Diffstat (limited to 'extensions/BugModal')
-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'); |