aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/store/view.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/src/js/store/view.js')
-rw-r--r--web/src/js/store/view.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/web/src/js/store/view.js b/web/src/js/store/view.js
index e96d1bcc..b5db9287 100644
--- a/web/src/js/store/view.js
+++ b/web/src/js/store/view.js
@@ -1,5 +1,8 @@
+
+var EventEmitter = require('events').EventEmitter;
var _ = require("lodash");
+
var utils = require("../utils.js");
function SortByStoreOrder(elem) {
@@ -12,7 +15,7 @@ var default_filt = function(elem){
};
function StoreView(store, filt, sortfun) {
- utils.EventEmitter.call(this);
+ EventEmitter.call(this);
filt = filt || default_filt;
sortfun = sortfun || default_sort;
@@ -30,7 +33,7 @@ function StoreView(store, filt, sortfun) {
this.recalculate(filt, sortfun);
}
-_.extend(StoreView.prototype, utils.EventEmitter.prototype, {
+_.extend(StoreView.prototype, EventEmitter.prototype, {
close: function () {
this.store.removeListener("add", this.add);
this.store.removeListener("update", this.update);