diff options
Diffstat (limited to 'background_scripts/completion.js')
| -rw-r--r-- | background_scripts/completion.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/background_scripts/completion.js b/background_scripts/completion.js index b31c4918..60125628 100644 --- a/background_scripts/completion.js +++ b/background_scripts/completion.js @@ -541,7 +541,7 @@ var completion = (function() { title = title || ''; // sanitize input, it could come from a malicious web site title = title.length > 0 ? ' <span class="title">' + utils.escapeHtml(title) + '</span>' : ''; - return '<em>' + type + '</em> ' + utils.escapeHtml(str) + title; + return '<span class="source">' + type + '</span> ' + utils.escapeHtml(str) + title; } /** Renders a completion by marking fuzzy-matched parts. */ |
