diff --git a/src/core/3.ob.js b/src/core/3.ob.js index 6eb2b53cd..5cf3cda20 100644 --- a/src/core/3.ob.js +++ b/src/core/3.ob.js @@ -67,7 +67,7 @@ self.on(eventName, lis); return; } - (lis.target ? lis.target : self)[lis.once ? "once" : "on"](lis.eventName, lis.action); + (lis.target ? lis.target : self)[lis.once ? "once" : "on"](lis.eventName, _.bind(lis.action, self)); }); delete this.options.listeners; }