diff options
| author | Alex Yatskov <alex@foosoft.net> | 2016-09-11 20:59:42 -0700 | 
|---|---|---|
| committer | Alex Yatskov <alex@foosoft.net> | 2016-09-11 20:59:42 -0700 | 
| commit | f4314497e401e94ccd2ff88358b5720c73074612 (patch) | |
| tree | 004221f5e91bbee35918fb76b50ebca1f65c12db /ext/fg/js/popup.js | |
| parent | fa446f540a3a93d51c457da661d61976bdd5cbdf (diff) | |
Cleanup
Diffstat (limited to 'ext/fg/js/popup.js')
| -rw-r--r-- | ext/fg/js/popup.js | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/ext/fg/js/popup.js b/ext/fg/js/popup.js index a0eb725c..930df18d 100644 --- a/ext/fg/js/popup.js +++ b/ext/fg/js/popup.js @@ -81,8 +81,8 @@ class Popup {          this.popup = document.createElement('iframe');          this.popup.id = 'yomichan-popup'; -        this.popup.addEventListener('mousedown', (e) => e.stopPropagation()); -        this.popup.addEventListener('scroll', (e) => e.stopPropagation()); +        this.popup.addEventListener('mousedown', e => e.stopPropagation()); +        this.popup.addEventListener('scroll', e => e.stopPropagation());          document.body.appendChild(this.popup);      } |