summaryrefslogtreecommitdiffstats
path: root/js/field.js
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2015-06-02 07:25:33 +0200
committerByron Jones <glob@mozilla.com>2015-06-02 07:25:33 +0200
commit646d6199a644a1e6d65706c400163d00fa310bfe (patch)
tree4ae677220b8464dc99c29b5ee7609db15fc1befc /js/field.js
parent4c751704c9644faf357adeea13584b08a359593d (diff)
downloadbugzilla-646d6199a644a1e6d65706c400163d00fa310bfe.tar.gz
bugzilla-646d6199a644a1e6d65706c400163d00fa310bfe.tar.xz
Bug 1146771: implement comment tagging
Diffstat (limited to 'js/field.js')
-rw-r--r--js/field.js11
1 files changed, 2 insertions, 9 deletions
diff --git a/js/field.js b/js/field.js
index 778451daf..fdacd4728 100644
--- a/js/field.js
+++ b/js/field.js
@@ -738,10 +738,7 @@ $(function() {
formatResult: function(suggestion, currentValue) {
return (suggestion.data.name === '' ?
suggestion.data.login : suggestion.data.name + ' (' + suggestion.data.login + ')')
- .replace(/&/g, '&amp;')
- .replace(/</g, '&lt;')
- .replace(/>/g, '&gt;')
- .replace(/"/g, '&quot;');
+ .htmlEncode();
},
onSearchStart: function(params) {
var that = $(this);
@@ -800,11 +797,7 @@ $(function() {
autoSelectFirst: true,
formatResult: function(suggestion, currentValue) {
// disable <b> wrapping of matched substring
- return suggestion.value
- .replace(/&/g, '&amp;')
- .replace(/</g, '&lt;')
- .replace(/>/g, '&gt;')
- .replace(/"/g, '&quot;');
+ return suggestion.value.htmlEncode();
},
onSelect: function() {
this.focus();