diff options
Diffstat (limited to 'ext/fg/js')
| -rw-r--r-- | ext/fg/js/frontend-api-receiver.js | 4 | ||||
| -rw-r--r-- | ext/fg/js/popup.js | 4 | 
2 files changed, 4 insertions, 4 deletions
| diff --git a/ext/fg/js/frontend-api-receiver.js b/ext/fg/js/frontend-api-receiver.js index bde14646..7d38ddd5 100644 --- a/ext/fg/js/frontend-api-receiver.js +++ b/ext/fg/js/frontend-api-receiver.js @@ -43,10 +43,10 @@ class FrontendApiReceiver {          const handler = this.handlers[action];          handler(params).then( -            result => { +            (result) => {                  this.sendResult(port, id, senderId, {result});              }, -            error => { +            (error) => {                  this.sendResult(port, id, senderId, {error: errorToJson(error)});              });      } diff --git a/ext/fg/js/popup.js b/ext/fg/js/popup.js index c40e5d60..42475d96 100644 --- a/ext/fg/js/popup.js +++ b/ext/fg/js/popup.js @@ -28,8 +28,8 @@ class Popup {          this.childrenSupported = true;          this.container = document.createElement('iframe');          this.container.className = 'yomichan-float'; -        this.container.addEventListener('mousedown', e => e.stopPropagation()); -        this.container.addEventListener('scroll', e => e.stopPropagation()); +        this.container.addEventListener('mousedown', (e) => e.stopPropagation()); +        this.container.addEventListener('scroll', (e) => e.stopPropagation());          this.container.setAttribute('src', chrome.runtime.getURL('/fg/float.html'));          this.container.style.width = '0px';          this.container.style.height = '0px'; |