Skip to content

Commit

Permalink
changed jQuery to $ in last commit for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
rdworth committed Oct 14, 2010
1 parent 8fcf58e commit 7eaedaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/jquery.ui.mouse.js
Expand Up @@ -93,7 +93,7 @@ $.widget("ui.mouse", {

_mouseMove: function(event) {
// IE mouseup check - mouseup happened when mouse was out of window
if ($.browser.msie && parseInt(jQuery.browser.version, 10) < 9 && !event.button) {
if ($.browser.msie && parseInt($.browser.version, 10) < 9 && !event.button) {
return this._mouseUp(event);
}

Expand Down

0 comments on commit 7eaedaa

Please sign in to comment.