diff options
Diffstat (limited to 'ext/mixed/js/display-generator.js')
-rw-r--r-- | ext/mixed/js/display-generator.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ext/mixed/js/display-generator.js b/ext/mixed/js/display-generator.js index 1810000b..1ccd5941 100644 --- a/ext/mixed/js/display-generator.js +++ b/ext/mixed/js/display-generator.js @@ -117,6 +117,10 @@ class DisplayGenerator { return node; } + createEmptyFooterNotification() { + return this._templates.instantiate('footer-notification'); + } + // Private _createTermExpression(details) { @@ -310,6 +314,7 @@ class DisplayGenerator { node.title = details.notes; inner.textContent = details.name; + node.dataset.details = details.notes || details.name; node.dataset.category = details.category; if (details.redundant) { node.dataset.redundant = 'true'; } @@ -472,6 +477,7 @@ class DisplayGenerator { node.dataset.readingIsSame = `${reading === expression}`; node.dataset.dictionary = dictionary; node.dataset.frequency = frequency; + node.dataset.details = `${dictionary}: ${frequency}`; return node; } @@ -486,6 +492,7 @@ class DisplayGenerator { node.dataset.character = character; node.dataset.dictionary = dictionary; node.dataset.frequency = frequency; + node.dataset.details = `${dictionary}: ${frequency}`; return node; } |