diff options
author | Alex Yatskov <alex@foosoft.net> | 2016-05-05 21:36:50 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2016-05-05 21:36:50 -0700 |
commit | f1e078c7d8fa09e8471e66b245afb80a1b78cc6b (patch) | |
tree | e6dd29654f7bbf3771d57b40e9d342a3b07cd823 /ext/fg/js/frame.js | |
parent | cc33a30b5eb531651346a407040f65b9ebb8a6c8 (diff) |
Removing flicker
Diffstat (limited to 'ext/fg/js/frame.js')
-rw-r--r-- | ext/fg/js/frame.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/fg/js/frame.js b/ext/fg/js/frame.js index 38848bfc..66d3a054 100644 --- a/ext/fg/js/frame.js +++ b/ext/fg/js/frame.js @@ -43,9 +43,9 @@ function onDomContentLoaded() { function onMessage(e) { const {action, params} = e.data, handlers = { - setActionState: ({index, state}) => { + setActionState: ({index, state, sequence}) => { for (const mode in state) { - const matches = document.querySelectorAll(`.action-link[data-index="${index}"][data-mode="${mode}"]`); + const matches = document.querySelectorAll(`.action-link[data-sequence="${sequence}"][data-index="${index}"][data-mode="${mode}"]`); if (matches.length === 0) { return; } |