2015-09-02 23:52:01 +00:00
|
|
|
define( [
|
2013-08-15 18:15:49 +00:00
|
|
|
"./core",
|
2013-09-09 15:26:21 +00:00
|
|
|
"./core/access",
|
2013-08-15 18:15:49 +00:00
|
|
|
"./css"
|
2013-09-09 15:26:21 +00:00
|
|
|
], function( jQuery, access ) {
|
2013-09-09 16:22:37 +00:00
|
|
|
|
2012-05-25 01:52:35 +00:00
|
|
|
// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods
|
2011-12-06 20:25:38 +00:00
|
|
|
jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
|
2014-07-17 17:25:59 +00:00
|
|
|
jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name },
|
|
|
|
function( defaultExtra, funcName ) {
|
2015-09-02 23:52:01 +00:00
|
|
|
|
2012-05-25 01:52:35 +00:00
|
|
|
// margin is only for outerHeight, outerWidth
|
|
|
|
jQuery.fn[ funcName ] = function( margin, value ) {
|
2012-07-10 01:38:11 +00:00
|
|
|
var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
|
2012-05-25 01:52:35 +00:00
|
|
|
extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" );
|
|
|
|
|
2013-09-09 15:26:21 +00:00
|
|
|
return access( this, function( elem, type, value ) {
|
2012-05-25 01:52:35 +00:00
|
|
|
var doc;
|
|
|
|
|
|
|
|
if ( jQuery.isWindow( elem ) ) {
|
2015-09-02 23:52:01 +00:00
|
|
|
|
2012-05-25 01:52:35 +00:00
|
|
|
// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there
|
|
|
|
// isn't a whole lot we can do. See pull request at this URL for discussion:
|
|
|
|
// https://github.com/jquery/jquery/pull/764
|
2012-07-10 01:38:11 +00:00
|
|
|
return elem.document.documentElement[ "client" + name ];
|
2012-02-25 18:13:16 +00:00
|
|
|
}
|
|
|
|
|
2012-05-25 01:52:35 +00:00
|
|
|
// Get document width or height
|
|
|
|
if ( elem.nodeType === 9 ) {
|
|
|
|
doc = elem.documentElement;
|
|
|
|
|
2014-07-17 17:25:59 +00:00
|
|
|
// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],
|
|
|
|
// whichever is greatest
|
2014-11-03 18:53:22 +00:00
|
|
|
// unfortunately, this causes bug #3838 in IE8 only,
|
2014-07-17 17:25:59 +00:00
|
|
|
// but there is currently no good, small way to fix it.
|
2012-05-25 01:52:35 +00:00
|
|
|
return Math.max(
|
2012-07-10 01:38:11 +00:00
|
|
|
elem.body[ "scroll" + name ], doc[ "scroll" + name ],
|
|
|
|
elem.body[ "offset" + name ], doc[ "offset" + name ],
|
|
|
|
doc[ "client" + name ]
|
2012-05-25 01:52:35 +00:00
|
|
|
);
|
|
|
|
}
|
2010-10-22 06:39:06 +00:00
|
|
|
|
2012-05-25 01:52:35 +00:00
|
|
|
return value === undefined ?
|
2015-09-02 23:52:01 +00:00
|
|
|
|
2012-05-25 01:52:35 +00:00
|
|
|
// Get width or height on the element, requesting but not forcing parseFloat
|
2012-12-10 23:25:23 +00:00
|
|
|
jQuery.css( elem, type, extra ) :
|
2010-11-09 16:09:07 +00:00
|
|
|
|
2012-05-25 01:52:35 +00:00
|
|
|
// Set width or height on the element
|
|
|
|
jQuery.style( elem, type, value, extra );
|
2012-08-19 20:30:10 +00:00
|
|
|
}, type, chainable ? margin : undefined, chainable, null );
|
2012-05-25 01:52:35 +00:00
|
|
|
};
|
2015-09-02 23:52:01 +00:00
|
|
|
} );
|
|
|
|
} );
|
2013-09-09 01:25:27 +00:00
|
|
|
|
|
|
|
return jQuery;
|
2015-09-02 23:52:01 +00:00
|
|
|
} );
|