diff options
author | Alex Yatskov <alex@foosoft.net> | 2018-03-12 13:04:37 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2018-03-12 13:04:37 -0700 |
commit | 68cdd7d85b741d34133ea04b95a4eb1e49553ace (patch) | |
tree | b6041ae3bbd2c327e57ca0766d77f3e11c654066 /ext/fg/js/float.js | |
parent | f0e9716aa5e763480cf6accceefcea4fa73bc149 (diff) | |
parent | 2470b6209a27ceea814a13d920a20683bacf09a6 (diff) |
Merge branch 'dev'
Diffstat (limited to 'ext/fg/js/float.js')
-rw-r--r-- | ext/fg/js/float.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ext/fg/js/float.js b/ext/fg/js/float.js index ff50483d..1f08702d 100644 --- a/ext/fg/js/float.js +++ b/ext/fg/js/float.js @@ -20,6 +20,8 @@ class DisplayFloat extends Display { constructor() { super($('#spinner'), $('#definitions')); + this.autoPlayAudioTimer = null; + $(window).on('message', utilAsync(this.onMessage.bind(this))); } @@ -54,6 +56,10 @@ class DisplayFloat extends Display { this.kanjiShow(definitions, options, context); }, + clearAutoPlayTimer: () => { + this.clearAutoPlayTimer(); + }, + orphaned: () => { this.onOrphaned(); } @@ -83,6 +89,18 @@ class DisplayFloat extends Display { super.onKeyDown(e); } } + + autoPlayAudio() { + this.clearAutoPlayTimer(); + this.autoPlayAudioTimer = window.setTimeout(() => super.autoPlayAudio(), 400); + } + + clearAutoPlayTimer() { + if (this.autoPlayAudioTimer) { + window.clearTimeout(this.autoPlayAudioTimer); + this.autoPlayAudioTimer = null; + } + } } window.yomichan_display = new DisplayFloat(); |