diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-04-02 15:55:50 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-04-02 15:55:50 -0400 |
commit | ccbfd45924d6ddebc7b2bb575a9c8997a3d9ec03 (patch) | |
tree | c826598d95c1b945677b9d375ff5ee80dab120eb /ui/jquery.ui.mouse.js | |
parent | 3876c874e3f311d263aef9f99ed2780afa1d41d7 (diff) | |
download | jquery-ui-ccbfd45924d6ddebc7b2bb575a9c8997a3d9ec03.tar.gz jquery-ui-ccbfd45924d6ddebc7b2bb575a9c8997a3d9ec03.zip |
A few lint fixes.
Diffstat (limited to 'ui/jquery.ui.mouse.js')
-rw-r--r-- | ui/jquery.ui.mouse.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.mouse.js b/ui/jquery.ui.mouse.js index 5e7744418..53b3dcc20 100644 --- a/ui/jquery.ui.mouse.js +++ b/ui/jquery.ui.mouse.js @@ -53,7 +53,7 @@ $.widget("ui.mouse", { _mouseDown: function(event) { // don't let more than one widget handle mouseStart - if( mouseHandled ) { return }; + if( mouseHandled ) { return; } // we may have missed mouseup (out of window) (this._mouseStarted && this._mouseUp(event)); |