diff options
author | elijah <elijah@riseup.net> | 2017-04-25 23:43:09 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2017-04-25 23:43:09 -0700 |
commit | ace78ba83bbf202a455e9cfd9b82e316393563f8 (patch) | |
tree | dadec8d7c1a64b407247c342733b6f82f421bfa8 /ui/app/app.js | |
parent | f0392a4937bb4c558f413d743daa4d71d0523478 (diff) |
for now, don't catch javascript errors
Diffstat (limited to 'ui/app/app.js')
-rw-r--r-- | ui/app/app.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/app.js b/ui/app/app.js index fe1cc47..9c6d54e 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -13,8 +13,8 @@ class Application { // main entry point for the application // initialize() { - window.addEventListener("error", this.showError.bind(this)) - window.addEventListener("unhandledrejection", this.showError.bind(this)) + //window.addEventListener("error", this.showError.bind(this)) + //window.addEventListener("unhandledrejection", this.showError.bind(this)) this.start() } |