summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2017-04-25 23:43:09 -0700
committerelijah <elijah@riseup.net>2017-04-25 23:43:09 -0700
commitace78ba83bbf202a455e9cfd9b82e316393563f8 (patch)
treedadec8d7c1a64b407247c342733b6f82f421bfa8 /ui
parentf0392a4937bb4c558f413d743daa4d71d0523478 (diff)
for now, don't catch javascript errors
Diffstat (limited to 'ui')
-rw-r--r--ui/app/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/app.js b/ui/app/app.js
index fe1cc47d..9c6d54ee 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()
}