diff --git a/src/core/4.widget.js b/src/core/4.widget.js index cdb9c213d..627128265 100644 --- a/src/core/4.widget.js +++ b/src/core/4.widget.js @@ -203,7 +203,9 @@ var self = this; if (_global.Fix) { this._watchers = this._watchers || []; - var watcher = new Fix.Watcher(null, BI.bind(getter, this), (handler && function () { + var watcher = new Fix.Watcher(null, function () { + return getter.call(self, self); + }, (handler && function () { handler.call(self, self); }) || BI.emptyFn, options); this._watchers.push(watcher);