aboutsummaryrefslogtreecommitdiff
path: root/ext/fg/js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-10-07 20:46:02 -0400
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-10-08 21:32:08 -0400
commit88de4271843197d37243a9ac360236f9dfb414e1 (patch)
treebef12c8b20d03db34046eda63b70b716c67e0942 /ext/fg/js
parentbf5d301685db6c31ea64771dab59610586bc1619 (diff)
Throw Error instead of string
Diffstat (limited to 'ext/fg/js')
-rw-r--r--ext/fg/js/popup-proxy-host.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fg/js/popup-proxy-host.js b/ext/fg/js/popup-proxy-host.js
index 7fad71c1..f933639c 100644
--- a/ext/fg/js/popup-proxy-host.js
+++ b/ext/fg/js/popup-proxy-host.js
@@ -69,7 +69,7 @@ class PopupProxyHost {
getPopup(id) {
if (!this.popups.hasOwnProperty(id)) {
- throw 'Invalid popup ID';
+ throw new Error('Invalid popup ID');
}
return this.popups[id];