summaryrefslogtreecommitdiff
path: root/ext/mixed/js/display.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-02-14 22:34:44 -0500
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-02-14 22:34:44 -0500
commitfaf15c08aa6777d1ae2d112c55659e08d53156c6 (patch)
tree194d7fc51bcbdf159393b2ef284e5b00e77936e7 /ext/mixed/js/display.js
parent89cb98e4d14ad4980133f8e8e44b15d56c3ebea5 (diff)
Rename optionsUpdate event to optionsUpdated
Past tense better indicates that the options were changed, but no data is being included as part of the event. It is also more consistent with the other event names the yomichan object currently provides.
Diffstat (limited to 'ext/mixed/js/display.js')
-rw-r--r--ext/mixed/js/display.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mixed/js/display.js b/ext/mixed/js/display.js
index 90b7aaf3..045ce906 100644
--- a/ext/mixed/js/display.js
+++ b/ext/mixed/js/display.js
@@ -52,7 +52,7 @@ class Display {
const displayGeneratorPromise = this.displayGenerator.prepare();
const updateOptionsPromise = this.updateOptions(options);
await Promise.all([displayGeneratorPromise, updateOptionsPromise]);
- yomichan.on('optionsUpdate', () => this.updateOptions(null));
+ yomichan.on('optionsUpdated', () => this.updateOptions(null));
}
onError(_error) {