Skip to content

Commit

Permalink
Little IE bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzos committed Nov 19, 2010
1 parent a53ea80 commit 3cdbe69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/mooimagetip.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ var MooImageTip = new Class({
},
'mousemove': function(e) {
if (!$this.options.follow) return;
$($this.options.tipId).setStyles({'left': e.page.x + $this.options.offset.x, 'top': e.page.y + $this.options.offset.y});
if ($($this.options.tipId)) $($this.options.tipId).setStyles({'left': e.page.x + $this.options.offset.x, 'top': e.page.y + $this.options.offset.y});
$this.fireEvent('moving');
}
});
Expand Down

0 comments on commit 3cdbe69

Please sign in to comment.