From 04347e5a0daadf021995328616102816fb8b2d4c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Tue, 10 Aug 2010 18:16:44 -0400 Subject: [PATCH] Fixed broken whitespace characters and missing semicolon. Fixes #3921 - Problem with JavaScriptPacker. --- ui/jquery.ui.core.js | 2 +- ui/jquery.ui.resizable.js | 2 +- ui/jquery.ui.tabs.js | 2 +- 3 files changed, 3 insertions(+), 3 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 ] ] ); diff --git a/ui/jquery.ui.resizable.js b/ui/jquery.ui.resizable.js index 59a977b74..a835ef9a8 100644 --- a/ui/jquery.ui.resizable.js +++ b/ui/jquery.ui.resizable.js @@ -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; diff --git a/ui/jquery.ui.tabs.js b/ui/jquery.ui.tabs.js index 62cae726e..212e46533 100644 --- a/ui/jquery.ui.tabs.js +++ b/ui/jquery.ui.tabs.js @@ -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, -- 2.39.5