diff options
-rw-r--r-- | ui/ui.magnifier.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/ui.magnifier.js b/ui/ui.magnifier.js index 0dc8efbf1..2d8bac5d1 100644 --- a/ui/ui.magnifier.js +++ b/ui/ui.magnifier.js @@ -59,7 +59,7 @@ $.widget("ui.magnifier", { this.identifier = ++counter;
$(document).bind("mousemove.magnifier"+this.identifier, function(e) {
- (self.disabled || self.magnify.apply(self, [e]));
+ (self.disabled || self._magnify.apply(self, [e]));
});
this.pp = this.element.offset();
@@ -95,7 +95,7 @@ $.widget("ui.magnifier", { });
},
- magnify: function(e) {
+ _magnify: function(e) {
var p = [e.pageX,e.pageY], o = this.options, c, distance = 1;
this.current = this.items[0];
|