changed jQuery to $ in last commit for consistency

This commit is contained in:
Richard D. Worth
2010-10-14 02:55:40 -07:00
parent 8fcf58e29e
commit 7eaedaad29

View File

@@ -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);
}