diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-07-13 09:57:58 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-07-13 09:57:58 -0400 |
commit | 21aad10e6aa68610feee69062a1cad750497c83f (patch) | |
tree | 43765c4ada332889a3de3cde80bfe90ef50b4264 /ui/jquery.ui.mouse.js | |
parent | ba387ce1c5ee4b0adce4f490fe1052ec525cb121 (diff) | |
download | jquery-ui-21aad10e6aa68610feee69062a1cad750497c83f.tar.gz jquery-ui-21aad10e6aa68610feee69062a1cad750497c83f.zip |
All: Define a local undefined variable inside the main closure.
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 6a7d6d39f..5f6bec437 100644 --- a/ui/jquery.ui.mouse.js +++ b/ui/jquery.ui.mouse.js @@ -10,7 +10,7 @@ * Depends: * jquery.ui.widget.js */ -(function($) { +(function( $, undefined ) { $.widget("ui.mouse", { options: { |