diff options
author | Clemens <cle1000.cb@gmail.com> | 2016-06-02 15:12:42 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2016-06-02 10:31:24 -0700 |
commit | 89fc438e324c359df8b387a39c9e8beab1df54d0 (patch) | |
tree | 6fbc14442c232eee515419cb6a7092a45dcad9b2 /web/src/js/store | |
parent | a219d3343081e13a005fc37e30a0bab83a773099 (diff) | |
download | mitmproxy-89fc438e324c359df8b387a39c9e8beab1df54d0.tar.gz mitmproxy-89fc438e324c359df8b387a39c9e8beab1df54d0.tar.bz2 mitmproxy-89fc438e324c359df8b387a39c9e8beab1df54d0.zip |
change some pr issuses
Diffstat (limited to 'web/src/js/store')
-rw-r--r-- | web/src/js/store/store.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/web/src/js/store/store.js b/web/src/js/store/store.js index 4c4478d9..a16a0369 100644 --- a/web/src/js/store/store.js +++ b/web/src/js/store/store.js @@ -2,7 +2,7 @@ import _ from "lodash"; import $ from "jquery"; import {EventEmitter} from 'events'; - +import { EventLogActions } from "../actions.js" import {ActionTypes, StoreCmds} from "../actions.js"; import {AppDispatcher} from "../dispatcher.js"; @@ -118,8 +118,7 @@ _.extend(LiveStoreMixin.prototype, { this.handle_fetch(message.data); }.bind(this)) .fail(function () { - //EventLogActions.add_event("Could not fetch " + this.type); - console.log("Could not fetch " + this.type); // store.js:121 Uncaught ReferenceError: EventLogActions is not defined + EventLogActions.add_event("Could not fetch " + this.type); }.bind(this)); } }, |