diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-08-10 18:16:44 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-08-10 18:16:44 -0400 |
commit | 04347e5a0daadf021995328616102816fb8b2d4c (patch) | |
tree | 6df8fb79f216af990dc1a2473d2ce74b5db51ac9 /ui/jquery.ui.core.js | |
parent | 2b9d684d1aed0fb50fba916ff8c69be5cc3fa4ae (diff) | |
download | jquery-ui-04347e5a0daadf021995328616102816fb8b2d4c.tar.gz jquery-ui-04347e5a0daadf021995328616102816fb8b2d4c.zip |
Fixed broken whitespace characters and missing semicolon. Fixes #3921 - Problem with JavaScriptPacker.
Diffstat (limited to 'ui/jquery.ui.core.js')
-rw-r--r-- | ui/jquery.ui.core.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.core.js b/ui/jquery.ui.core.js index bf5312d5c..358296285 100644 --- a/ui/jquery.ui.core.js +++ b/ui/jquery.ui.core.js @@ -24,7 +24,7 @@ $.extend( $.ui, { // $.ui.plugin is deprecated. Use the proxy pattern instead. plugin: { add: function( module, option, set ) { - var proto = $.ui[ module ].prototype; + var proto = $.ui[ module ].prototype; for ( var i in set ) { proto.plugins[ i ] = proto.plugins[ i ] || []; proto.plugins[ i ].push( [ option, set[ i ] ] ); |