Skip to content

Commit 04347e5

Browse files
committed
Fixed broken whitespace characters and missing semicolon. Fixes #3921 - Problem with JavaScriptPacker.
1 parent 2b9d684 commit 04347e5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ui/jquery.ui.core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ $.extend( $.ui, {
2424
// $.ui.plugin is deprecated. Use the proxy pattern instead.
2525
plugin: {
2626
add: function( module, option, set ) {
27-
var proto = $.ui[ module ].prototype;
27+
var proto = $.ui[ module ].prototype;
2828
for ( var i in set ) {
2929
proto.plugins[ i ] = proto.plugins[ i ] || [];
3030
proto.plugins[ i ].push( [ option, set[ i ] ] );

ui/jquery.ui.resizable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ $.ui.plugin.add("resizable", "alsoResize", {
595595
// reset position for Opera - no need to verify it was changed
596596
el.css({ position: el.data("resizable-alsoresize").position });
597597
});
598-
}
598+
};
599599

600600
if (self._revertToRelativePosition) {
601601
self._revertToRelativePosition = false;

ui/jquery.ui.tabs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ $.widget( "ui.tabs", {
603603
return this;
604604
},
605605

606-
load: function( index ) {
606+
load: function( index ) {
607607
index = this._getIndex( index );
608608
var self = this,
609609
o = this.options,

0 commit comments

Comments
 (0)