diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-11-26 22:01:54 -0500 | 
|---|---|---|
| committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-11-26 22:06:27 -0500 | 
| commit | 5a1046bc906a74ca39906a52acc62fc702a658f2 (patch) | |
| tree | 7c484f245a19d01be9fbf4120cfa222c97363a24 /ext/fg/js | |
| parent | 63a775ebcafc8d0477bc267ef39e40c4d3283666 (diff) | |
Update arrow-parens to always
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'; |