aboutsummaryrefslogtreecommitdiff
path: root/ext/fg/js/client.js
diff options
context:
space:
mode:
authorAlex Yatskov <alex@foosoft.net>2016-05-05 20:23:06 -0700
committerAlex Yatskov <alex@foosoft.net>2016-05-05 20:23:06 -0700
commit22cbafb7b731be5cc70dbd0b0ad3372e8efdc1f0 (patch)
treeb9d8759e518159840be39eacefea2248363a9a65 /ext/fg/js/client.js
parent9cb099e5f6aad33c70d986bd6a48668e54ee211c (diff)
Cleanup
Diffstat (limited to 'ext/fg/js/client.js')
-rw-r--r--ext/fg/js/client.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/ext/fg/js/client.js b/ext/fg/js/client.js
index aea2d607..11190869 100644
--- a/ext/fg/js/client.js
+++ b/ext/fg/js/client.js
@@ -112,7 +112,9 @@ class Client {
(content) => {
this.definitions = definitions;
this.showPopup(range, content);
- canAddNotes(definitions, (states) => this.popup.sendMessage('setActionStates', states));
+ canAddNotes(definitions, (states) => {
+ states.forEach((state, index) => this.popup.sendMessage('setActionState', {index: index, state: state}));
+ });
}
);
}
@@ -120,7 +122,10 @@ class Client {
}
actionAddNote(mode, index, callback) {
+ const state = {};
+ state[mode] = false;
+ this.popup.sendMessage('setActionState', {index: index, state: state});
}
actionDisplayKanji(kanji) {