Skip to content

Commit

Permalink
Fixed broken whitespace characters and missing semicolon. Fixes #3921…
Browse files Browse the repository at this point in the history
… - Problem with JavaScriptPacker.
  • Loading branch information
scottgonzalez committed Aug 10, 2010
1 parent 2b9d684 commit 04347e5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ui/jquery.ui.core.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 ] ] );
Expand Down
2 changes: 1 addition & 1 deletion ui/jquery.ui.resizable.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion ui/jquery.ui.tabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 04347e5

Please sign in to comment.