aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/stores/base.es6.js
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2014-09-16 00:05:06 +0200
committerMaximilian Hils <git@maximilianhils.com>2014-09-16 00:05:06 +0200
commitacdd182754625fabcfc2c6ed4bdad8a63bce8ad6 (patch)
treebd48b8c269790d31913a13ecac8969c9d6413f0e /web/src/js/stores/base.es6.js
parent1d9b1f79a11feb57043be1d9d656f4c1638d3357 (diff)
downloadmitmproxy-acdd182754625fabcfc2c6ed4bdad8a63bce8ad6.tar.gz
mitmproxy-acdd182754625fabcfc2c6ed4bdad8a63bce8ad6.tar.bz2
mitmproxy-acdd182754625fabcfc2c6ed4bdad8a63bce8ad6.zip
web: implement EventLogStore
Diffstat (limited to 'web/src/js/stores/base.es6.js')
-rw-r--r--web/src/js/stores/base.es6.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/src/js/stores/base.es6.js b/web/src/js/stores/base.es6.js
index 9e9c69aa..d5d0c7ab 100644
--- a/web/src/js/stores/base.es6.js
+++ b/web/src/js/stores/base.es6.js
@@ -7,7 +7,7 @@ class EventEmitter {
return;
}
this.listeners[event].forEach(function(listener) {
- listener(event, this);
+ listener.apply(this, arguments);
}.bind(this));
}
addListener(event, f) {