Fixed broken whitespace characters and missing semicolon. Fixes #3921 - Problem with JavaScriptPacker.

This commit is contained in:
Scott González 2010-08-10 18:16:44 -04:00
parent 2b9d684d1a
commit 04347e5a0d
3 changed files with 3 additions and 3 deletions

View File

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

View File

@ -595,7 +595,7 @@ $.ui.plugin.add("resizable", "alsoResize", {
// reset position for Opera - no need to verify it was changed
el.css({ position: el.data("resizable-alsoresize").position });
});
}
};
if (self._revertToRelativePosition) {
self._revertToRelativePosition = false;

View File

@ -603,7 +603,7 @@ $.widget( "ui.tabs", {
return this;
},
load: function( index ) {
load: function( index ) {
index = this._getIndex( index );
var self = this,
o = this.options,