mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Fixed broken whitespace characters and missing semicolon. Fixes #3921 - Problem with JavaScriptPacker.
This commit is contained in:
parent
2b9d684d1a
commit
04347e5a0d
2
ui/jquery.ui.core.js
vendored
2
ui/jquery.ui.core.js
vendored
@ -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 ] ] );
|
||||
|
2
ui/jquery.ui.resizable.js
vendored
2
ui/jquery.ui.resizable.js
vendored
@ -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;
|
||||
|
2
ui/jquery.ui.tabs.js
vendored
2
ui/jquery.ui.tabs.js
vendored
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user