diff options
author | Alex Yatskov <alex@foosoft.net> | 2016-05-29 12:58:51 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2016-05-29 12:58:51 -0700 |
commit | 49951356572fe972ef01d0578861c39430520f19 (patch) | |
tree | 7262640e6ac77a99bd504bd1e0591f4f23333d6e /ext/fg/js/popup.js | |
parent | 8c944c62944e24459d69432851dd848c7aa95d87 (diff) |
Cleanup
Diffstat (limited to 'ext/fg/js/popup.js')
-rw-r--r-- | ext/fg/js/popup.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fg/js/popup.js b/ext/fg/js/popup.js index 53359cf3..78106319 100644 --- a/ext/fg/js/popup.js +++ b/ext/fg/js/popup.js @@ -70,7 +70,7 @@ class Popup { sendMessage(action, params, callback) { if (this.popup !== null) { - this.popup.contentWindow.postMessage({action: action, params: params}, '*'); + this.popup.contentWindow.postMessage({action, params}, '*'); } } |