diff options
author | hackademix | 2018-07-20 16:19:49 +0200 |
---|---|---|
committer | hackademix | 2018-07-20 16:19:49 +0200 |
commit | 9382bbd9112b48676e3c308921e0285f632f9126 (patch) | |
tree | 6c0c0f044e87692085b6a466b9855b30d11dedb2 /src/content/PlaceHolder.js | |
parent | b1e4791d0a7c95815cba31a8caa5d39dd987c756 (diff) | |
download | noscript-9382bbd9112b48676e3c308921e0285f632f9126.tar.gz noscript-9382bbd9112b48676e3c308921e0285f632f9126.tar.xz noscript-9382bbd9112b48676e3c308921e0285f632f9126.zip |
Replaced unicode glyphs missing on some platforms and in the Tor Browser.
Diffstat (limited to 'src/content/PlaceHolder.js')
-rw-r--r-- | src/content/PlaceHolder.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content/PlaceHolder.js b/src/content/PlaceHolder.js index ce579c2..d8c422b 100644 --- a/src/content/PlaceHolder.js +++ b/src/content/PlaceHolder.js @@ -101,7 +101,7 @@ var PlaceHolder = (() => { button.className = replacement.className; button.setAttribute("aria-label", button.title = _("Close")); button.value = "close"; - button.textContent = "🗙"; + button.textContent = "×"; let description = inner.appendChild(createHTMLElement("span")); description.textContent = `${TYPE}@${this.origin}`; |