aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js
diff options
context:
space:
mode:
authorClemens <cle1000.cb@gmail.com>2016-06-01 23:12:09 +0200
committerMaximilian Hils <git@maximilianhils.com>2016-06-02 10:30:43 -0700
commitcf544318ae7b59711f64166fe765c93ec8fb42c1 (patch)
tree727ef65609d16c5f262b60e7ecc70e688b3901d3 /web/src/js
parentdfc033ab5f981eb97cda695e707acd590e5708e3 (diff)
downloadmitmproxy-cf544318ae7b59711f64166fe765c93ec8fb42c1.tar.gz
mitmproxy-cf544318ae7b59711f64166fe765c93ec8fb42c1.tar.bz2
mitmproxy-cf544318ae7b59711f64166fe765c93ec8fb42c1.zip
basic file up and download working
Diffstat (limited to 'web/src/js')
-rw-r--r--web/src/js/store/store.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/web/src/js/store/store.js b/web/src/js/store/store.js
index e41b2eef..4c4478d9 100644
--- a/web/src/js/store/store.js
+++ b/web/src/js/store/store.js
@@ -118,7 +118,8 @@ _.extend(LiveStoreMixin.prototype, {
this.handle_fetch(message.data);
}.bind(this))
.fail(function () {
- EventLogActions.add_event("Could not fetch " + this.type);
+ //EventLogActions.add_event("Could not fetch " + this.type);
+ console.log("Could not fetch " + this.type); // store.js:121 Uncaught ReferenceError: EventLogActions is not defined
}.bind(this));
}
},