From 8816bcc7a6518fb94af7840c6df183fd86f92009 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Tue, 24 Mar 2015 21:20:07 +0800 Subject: Bug 1146806: "new bug" menu has literal "…" instead of a horizontal ellipsis --- extensions/BugModal/web/bug_modal.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'extensions/BugModal') 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'); -- cgit v1.2.3-24-g4f1b