diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-11-03 12:54:18 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-11-07 20:30:55 -0500 |
commit | b05960967098262c619e28be5238539c26b7b697 (patch) | |
tree | 8452e7ddd0713e682ecf30d62b0005412c6b0a78 | |
parent | cad0648cbe2b7511cd530eabfe526a40c1c090ba (diff) |
Add outdated warning
-rw-r--r-- | ext/bg/js/settings-dictionaries.js | 4 | ||||
-rw-r--r-- | ext/bg/settings.html | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/ext/bg/js/settings-dictionaries.js b/ext/bg/js/settings-dictionaries.js index 921e0813..5a722c6f 100644 --- a/ext/bg/js/settings-dictionaries.js +++ b/ext/bg/js/settings-dictionaries.js @@ -171,6 +171,10 @@ class SettingsDictionaryEntryUI { this.priorityInput = this.content.querySelector('.dict-priority'); this.deleteButton = this.content.querySelector('.dict-delete-button'); + if (this.dictionaryInfo.version < 3) { + this.content.querySelector('.dict-outdated').hidden = false; + } + this.content.querySelector('.dict-title').textContent = this.dictionaryInfo.title; this.content.querySelector('.dict-revision').textContent = `rev.${this.dictionaryInfo.revision}`; diff --git a/ext/bg/settings.html b/ext/bg/settings.html index d3465e61..19449261 100644 --- a/ext/bg/settings.html +++ b/ext/bg/settings.html @@ -492,7 +492,7 @@ <template id="dict-template"><div class="dict-group well well-sm"> <h4><span class="text-muted glyphicon glyphicon-book"></span> <span class="dict-title"></span> <small class="dict-revision"></small></h4> - <p class="text-warning" hidden>This dictionary is outdated and may not support new extension features; please import the latest version.</p> + <p class="text-warning dict-outdated" hidden>This dictionary is outdated and may not support new extension features; please import the latest version.</p> <div class="checkbox"> <label><input type="checkbox" class="dict-enabled"> Enable search</label> |