diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-08-01 16:22:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-01 16:22:00 -0400 |
commit | 1e839cd230e53f822478f945cb415a8af2b09aef (patch) | |
tree | eeb4c9552ce591b52642f38542f83f8094066231 /ext/mixed/js/display-generator.js | |
parent | b52074b3f0df09b9e37a210789507aa553a2dc9d (diff) |
More display refactoring (#697)
* Remove some unnecessary _setQuery calls
* Add support for forcing the query parser to be visible or hidden
* Move _setEventListenersActive calls
* Remove URL for kanji links
* Refactor _setContentTermsOrKanji
* Move search query text assignment into Display
* Move title updates into Display
* Move popup close calls
* Prevent infinite loop of extension unload events
Diffstat (limited to 'ext/mixed/js/display-generator.js')
-rw-r--r-- | ext/mixed/js/display-generator.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/mixed/js/display-generator.js b/ext/mixed/js/display-generator.js index 276b37de..2b0b5b1c 100644 --- a/ext/mixed/js/display-generator.js +++ b/ext/mixed/js/display-generator.js @@ -281,7 +281,6 @@ class DisplayGenerator { _createKanjiLink(character) { const node = document.createElement('a'); - node.href = '#'; node.className = 'kanji-link'; node.textContent = character; return node; |