summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2015-03-24 14:20:07 +0100
committerByron Jones <glob@mozilla.com>2015-03-24 14:20:07 +0100
commit8816bcc7a6518fb94af7840c6df183fd86f92009 (patch)
tree28dabcbadcc1efbe2c5683bc1a7152ec6d9d3920 /extensions
parent3ac701266452d3509776fe58f9e1b2b8e9f33c1e (diff)
downloadbugzilla-8816bcc7a6518fb94af7840c6df183fd86f92009.tar.gz
bugzilla-8816bcc7a6518fb94af7840c6df183fd86f92009.tar.xz
Bug 1146806: "new bug" menu has literal "&hellip;" instead of a horizontal ellipsis
Diffstat (limited to 'extensions')
-rw-r--r--extensions/BugModal/web/bug_modal.js12
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: '&hellip; in this product',
+ name: '\u2026 in this product',
callback: function() {
window.open('enter_bug.cgi?product=' + encodeURIComponent($('#product').val()), '_blank');
}
},
{
- name: '&hellip; 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: '&hellip; 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: '&hellip; 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: '&hellip; 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: '&hellip; 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');