diff options
author | Clemens <cle1000.cb@gmail.com> | 2016-06-01 23:12:09 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2016-06-02 10:30:43 -0700 |
commit | cf544318ae7b59711f64166fe765c93ec8fb42c1 (patch) | |
tree | 727ef65609d16c5f262b60e7ecc70e688b3901d3 /web/src | |
parent | dfc033ab5f981eb97cda695e707acd590e5708e3 (diff) | |
download | mitmproxy-cf544318ae7b59711f64166fe765c93ec8fb42c1.tar.gz mitmproxy-cf544318ae7b59711f64166fe765c93ec8fb42c1.tar.bz2 mitmproxy-cf544318ae7b59711f64166fe765c93ec8fb42c1.zip |
basic file up and download working
Diffstat (limited to 'web/src')
-rw-r--r-- | web/src/js/store/store.js | 3 |
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)); } }, |