mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Core: Moved old jQuery support code to the bottom (above deprecated).
This commit is contained in:
parent
02694a90f3
commit
8a32c39136
94
ui/jquery.ui.core.js
vendored
94
ui/jquery.ui.core.js
vendored
@ -128,53 +128,6 @@ $.fn.extend({
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// support: jQuery <1.8
|
|
||||||
if ( !$( "<a>" ).outerWidth( 1 ).jquery ) {
|
|
||||||
$.each( [ "Width", "Height" ], function( i, name ) {
|
|
||||||
var side = name === "Width" ? [ "Left", "Right" ] : [ "Top", "Bottom" ],
|
|
||||||
type = name.toLowerCase(),
|
|
||||||
orig = {
|
|
||||||
innerWidth: $.fn.innerWidth,
|
|
||||||
innerHeight: $.fn.innerHeight,
|
|
||||||
outerWidth: $.fn.outerWidth,
|
|
||||||
outerHeight: $.fn.outerHeight
|
|
||||||
};
|
|
||||||
|
|
||||||
function reduce( elem, size, border, margin ) {
|
|
||||||
$.each( side, function() {
|
|
||||||
size -= parseFloat( $.css( elem, "padding" + this ) ) || 0;
|
|
||||||
if ( border ) {
|
|
||||||
size -= parseFloat( $.css( elem, "border" + this + "Width" ) ) || 0;
|
|
||||||
}
|
|
||||||
if ( margin ) {
|
|
||||||
size -= parseFloat( $.css( elem, "margin" + this ) ) || 0;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return size;
|
|
||||||
}
|
|
||||||
|
|
||||||
$.fn[ "inner" + name ] = function( size ) {
|
|
||||||
if ( size === undefined ) {
|
|
||||||
return orig[ "inner" + name ].call( this );
|
|
||||||
}
|
|
||||||
|
|
||||||
return this.each(function() {
|
|
||||||
$( this ).css( type, reduce( this, size ) + "px" );
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
$.fn[ "outer" + name] = function( size, margin ) {
|
|
||||||
if ( typeof size !== "number" ) {
|
|
||||||
return orig[ "outer" + name ].call( this, size );
|
|
||||||
}
|
|
||||||
|
|
||||||
return this.each(function() {
|
|
||||||
$( this).css( type, reduce( this, size, true, margin ) + "px" );
|
|
||||||
});
|
|
||||||
};
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// selectors
|
// selectors
|
||||||
function focusable( element, isTabIndexNotNaN ) {
|
function focusable( element, isTabIndexNotNaN ) {
|
||||||
var map, mapName, img,
|
var map, mapName, img,
|
||||||
@ -230,6 +183,53 @@ $.extend( $.expr[ ":" ], {
|
|||||||
// support
|
// support
|
||||||
$.support.selectstart = "onselectstart" in document.createElement( "div" );
|
$.support.selectstart = "onselectstart" in document.createElement( "div" );
|
||||||
|
|
||||||
|
// support: jQuery <1.8
|
||||||
|
if ( !$( "<a>" ).outerWidth( 1 ).jquery ) {
|
||||||
|
$.each( [ "Width", "Height" ], function( i, name ) {
|
||||||
|
var side = name === "Width" ? [ "Left", "Right" ] : [ "Top", "Bottom" ],
|
||||||
|
type = name.toLowerCase(),
|
||||||
|
orig = {
|
||||||
|
innerWidth: $.fn.innerWidth,
|
||||||
|
innerHeight: $.fn.innerHeight,
|
||||||
|
outerWidth: $.fn.outerWidth,
|
||||||
|
outerHeight: $.fn.outerHeight
|
||||||
|
};
|
||||||
|
|
||||||
|
function reduce( elem, size, border, margin ) {
|
||||||
|
$.each( side, function() {
|
||||||
|
size -= parseFloat( $.css( elem, "padding" + this ) ) || 0;
|
||||||
|
if ( border ) {
|
||||||
|
size -= parseFloat( $.css( elem, "border" + this + "Width" ) ) || 0;
|
||||||
|
}
|
||||||
|
if ( margin ) {
|
||||||
|
size -= parseFloat( $.css( elem, "margin" + this ) ) || 0;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return size;
|
||||||
|
}
|
||||||
|
|
||||||
|
$.fn[ "inner" + name ] = function( size ) {
|
||||||
|
if ( size === undefined ) {
|
||||||
|
return orig[ "inner" + name ].call( this );
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.each(function() {
|
||||||
|
$( this ).css( type, reduce( this, size ) + "px" );
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
$.fn[ "outer" + name] = function( size, margin ) {
|
||||||
|
if ( typeof size !== "number" ) {
|
||||||
|
return orig[ "outer" + name ].call( this, size );
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.each(function() {
|
||||||
|
$( this).css( type, reduce( this, size, true, margin ) + "px" );
|
||||||
|
});
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user