2013-10-15 14:40:48 +00:00
|
|
|
define([
|
|
|
|
"./core",
|
|
|
|
"./core/access",
|
|
|
|
"./css/var/rnumnonpx",
|
|
|
|
"./css/curCSS",
|
|
|
|
"./css/addGetHookIf",
|
|
|
|
"./css/support",
|
2013-08-15 18:15:49 +00:00
|
|
|
|
2013-10-15 14:40:48 +00:00
|
|
|
"./core/init",
|
|
|
|
"./css",
|
|
|
|
"./selector" // contains
|
2014-07-25 19:21:22 +00:00
|
|
|
], function( jQuery, access, rnumnonpx, curCSS, addGetHookIf, support ) {
|
2013-09-11 00:24:26 +00:00
|
|
|
|
2013-10-15 14:40:48 +00:00
|
|
|
var docElem = window.document.documentElement;
|
2013-08-15 18:15:49 +00:00
|
|
|
|
2013-09-09 16:13:41 +00:00
|
|
|
/**
|
|
|
|
* Gets a window from an element
|
|
|
|
*/
|
|
|
|
function getWindow( elem ) {
|
|
|
|
return jQuery.isWindow( elem ) ? elem : elem.nodeType === 9 && elem.defaultView;
|
|
|
|
}
|
2011-12-06 20:25:38 +00:00
|
|
|
|
2011-10-31 16:33:55 +00:00
|
|
|
jQuery.offset = {
|
2010-01-07 19:08:32 +00:00
|
|
|
setOffset: function( elem, options, i ) {
|
2013-01-15 21:54:40 +00:00
|
|
|
var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,
|
|
|
|
position = jQuery.css( elem, "position" ),
|
|
|
|
curElem = jQuery( elem ),
|
|
|
|
props = {};
|
2010-03-23 00:11:37 +00:00
|
|
|
|
2013-01-15 21:54:40 +00:00
|
|
|
// Set position first, in-case top/left are set even on static elem
|
2010-03-23 00:11:37 +00:00
|
|
|
if ( position === "static" ) {
|
2009-12-22 01:13:16 +00:00
|
|
|
elem.style.position = "relative";
|
2009-09-15 19:15:04 +00:00
|
|
|
}
|
2010-03-23 00:11:37 +00:00
|
|
|
|
2013-01-15 21:54:40 +00:00
|
|
|
curOffset = curElem.offset();
|
|
|
|
curCSSTop = jQuery.css( elem, "top" );
|
|
|
|
curCSSLeft = jQuery.css( elem, "left" );
|
2013-09-06 18:31:18 +00:00
|
|
|
calculatePosition = ( position === "absolute" || position === "fixed" ) &&
|
|
|
|
( curCSSTop + curCSSLeft ).indexOf("auto") > -1;
|
2010-03-23 00:11:37 +00:00
|
|
|
|
2014-04-25 22:26:36 +00:00
|
|
|
// Need to be able to calculate position if either
|
|
|
|
// top or left is auto and position is either absolute or fixed
|
2010-03-23 00:11:37 +00:00
|
|
|
if ( calculatePosition ) {
|
|
|
|
curPosition = curElem.position();
|
2011-01-15 12:56:20 +00:00
|
|
|
curTop = curPosition.top;
|
|
|
|
curLeft = curPosition.left;
|
2013-01-15 21:54:40 +00:00
|
|
|
|
2011-01-15 12:56:20 +00:00
|
|
|
} else {
|
|
|
|
curTop = parseFloat( curCSSTop ) || 0;
|
|
|
|
curLeft = parseFloat( curCSSLeft ) || 0;
|
2010-03-23 00:11:37 +00:00
|
|
|
}
|
|
|
|
|
2010-01-07 19:07:21 +00:00
|
|
|
if ( jQuery.isFunction( options ) ) {
|
|
|
|
options = options.call( elem, i, curOffset );
|
|
|
|
}
|
|
|
|
|
2011-10-27 19:33:21 +00:00
|
|
|
if ( options.top != null ) {
|
|
|
|
props.top = ( options.top - curOffset.top ) + curTop;
|
2010-03-23 00:05:08 +00:00
|
|
|
}
|
2011-10-27 19:33:21 +00:00
|
|
|
if ( options.left != null ) {
|
|
|
|
props.left = ( options.left - curOffset.left ) + curLeft;
|
2010-03-23 00:05:08 +00:00
|
|
|
}
|
2010-12-30 06:34:48 +00:00
|
|
|
|
2009-12-22 01:13:16 +00:00
|
|
|
if ( "using" in options ) {
|
2009-09-15 19:15:04 +00:00
|
|
|
options.using.call( elem, props );
|
2013-01-15 21:54:40 +00:00
|
|
|
|
2009-09-15 19:15:04 +00:00
|
|
|
} else {
|
|
|
|
curElem.css( props );
|
|
|
|
}
|
2008-11-10 02:39:03 +00:00
|
|
|
}
|
2011-10-31 16:33:55 +00:00
|
|
|
};
|
2008-03-15 18:53:40 +00:00
|
|
|
|
2008-04-29 03:26:06 +00:00
|
|
|
jQuery.fn.extend({
|
2013-09-09 16:13:41 +00:00
|
|
|
offset: function( options ) {
|
|
|
|
if ( arguments.length ) {
|
|
|
|
return options === undefined ?
|
|
|
|
this :
|
|
|
|
this.each(function( i ) {
|
|
|
|
jQuery.offset.setOffset( this, options, i );
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
var docElem, win,
|
|
|
|
elem = this[ 0 ],
|
|
|
|
box = { top: 0, left: 0 },
|
|
|
|
doc = elem && elem.ownerDocument;
|
|
|
|
|
|
|
|
if ( !doc ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
docElem = doc.documentElement;
|
|
|
|
|
|
|
|
// Make sure it's not a disconnected DOM node
|
|
|
|
if ( !jQuery.contains( docElem, elem ) ) {
|
|
|
|
return box;
|
|
|
|
}
|
|
|
|
|
2014-04-25 22:26:36 +00:00
|
|
|
// Support: BlackBerry 5, iOS 3 (original iPhone)
|
2013-09-09 16:13:41 +00:00
|
|
|
// If we don't have gBCR, just use 0,0 rather than error
|
2014-07-25 20:08:42 +00:00
|
|
|
if ( elem.getBoundingClientRect ) {
|
2013-09-09 16:13:41 +00:00
|
|
|
box = elem.getBoundingClientRect();
|
|
|
|
}
|
|
|
|
win = getWindow( doc );
|
|
|
|
return {
|
|
|
|
top: box.top + win.pageYOffset - docElem.clientTop,
|
|
|
|
left: box.left + win.pageXOffset - docElem.clientLeft
|
|
|
|
};
|
|
|
|
},
|
2011-09-20 01:03:41 +00:00
|
|
|
|
2008-04-29 03:26:06 +00:00
|
|
|
position: function() {
|
2012-10-17 17:40:52 +00:00
|
|
|
if ( !this[ 0 ] ) {
|
2012-07-10 03:06:51 +00:00
|
|
|
return;
|
2009-12-22 00:58:13 +00:00
|
|
|
}
|
2009-03-17 20:50:17 +00:00
|
|
|
|
2012-10-17 17:40:52 +00:00
|
|
|
var offsetParent, offset,
|
2013-01-15 21:54:40 +00:00
|
|
|
elem = this[ 0 ],
|
|
|
|
parentOffset = { top: 0, left: 0 };
|
2009-03-17 20:50:17 +00:00
|
|
|
|
2014-07-17 17:25:59 +00:00
|
|
|
// Fixed elements are offset from window (parentOffset = {top:0, left: 0},
|
|
|
|
// because it is its only offset parent
|
2012-10-17 17:40:52 +00:00
|
|
|
if ( jQuery.css( elem, "position" ) === "fixed" ) {
|
2014-04-25 22:26:36 +00:00
|
|
|
// Assume getBoundingClientRect is there when computed position is fixed
|
2012-10-17 17:40:52 +00:00
|
|
|
offset = elem.getBoundingClientRect();
|
2013-01-15 21:54:40 +00:00
|
|
|
|
2012-10-17 17:40:52 +00:00
|
|
|
} else {
|
|
|
|
// Get *real* offsetParent
|
|
|
|
offsetParent = this.offsetParent();
|
|
|
|
|
|
|
|
// Get correct offsets
|
|
|
|
offset = this.offset();
|
2012-08-19 19:53:09 +00:00
|
|
|
if ( !jQuery.nodeName( offsetParent[ 0 ], "html" ) ) {
|
2012-10-17 17:40:52 +00:00
|
|
|
parentOffset = offsetParent.offset();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add offsetParent borders
|
2013-01-15 21:54:40 +00:00
|
|
|
parentOffset.top += jQuery.css( offsetParent[ 0 ], "borderTopWidth", true );
|
2012-12-10 23:25:23 +00:00
|
|
|
parentOffset.left += jQuery.css( offsetParent[ 0 ], "borderLeftWidth", true );
|
2012-10-17 17:40:52 +00:00
|
|
|
}
|
2009-03-17 20:50:17 +00:00
|
|
|
|
2012-10-17 17:40:52 +00:00
|
|
|
// Subtract parent offsets and element margins
|
2009-04-21 19:19:28 +00:00
|
|
|
return {
|
2013-01-15 21:54:40 +00:00
|
|
|
top: offset.top - parentOffset.top - jQuery.css( elem, "marginTop", true ),
|
|
|
|
left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true )
|
2009-03-17 20:50:17 +00:00
|
|
|
};
|
2008-04-29 03:26:06 +00:00
|
|
|
},
|
2008-05-13 01:45:58 +00:00
|
|
|
|
2008-04-29 03:26:06 +00:00
|
|
|
offsetParent: function() {
|
2009-12-22 00:58:13 +00:00
|
|
|
return this.map(function() {
|
2013-02-22 21:33:52 +00:00
|
|
|
var offsetParent = this.offsetParent || docElem;
|
2013-01-15 21:54:40 +00:00
|
|
|
|
2014-07-17 17:25:59 +00:00
|
|
|
while ( offsetParent && ( !jQuery.nodeName( offsetParent, "html" ) &&
|
|
|
|
jQuery.css( offsetParent, "position" ) === "static" ) ) {
|
2009-07-25 16:04:30 +00:00
|
|
|
offsetParent = offsetParent.offsetParent;
|
|
|
|
}
|
2013-01-15 21:54:40 +00:00
|
|
|
|
2013-02-22 21:33:52 +00:00
|
|
|
return offsetParent || docElem;
|
2009-07-25 16:04:30 +00:00
|
|
|
});
|
2008-04-29 03:26:06 +00:00
|
|
|
}
|
2008-03-15 18:53:40 +00:00
|
|
|
});
|
|
|
|
|
2008-04-29 03:26:06 +00:00
|
|
|
// Create scrollLeft and scrollTop methods
|
2013-09-11 01:08:01 +00:00
|
|
|
jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function( method, prop ) {
|
2013-01-15 21:54:40 +00:00
|
|
|
var top = "pageYOffset" === prop;
|
2009-03-23 01:55:17 +00:00
|
|
|
|
2011-01-18 17:40:07 +00:00
|
|
|
jQuery.fn[ method ] = function( val ) {
|
2013-09-09 15:26:21 +00:00
|
|
|
return access( this, function( elem, method, val ) {
|
2011-12-06 20:25:38 +00:00
|
|
|
var win = getWindow( elem );
|
|
|
|
|
|
|
|
if ( val === undefined ) {
|
2013-01-15 21:54:40 +00:00
|
|
|
return win ? win[ prop ] : elem[ method ];
|
2011-01-10 01:51:20 +00:00
|
|
|
}
|
2009-12-22 00:58:13 +00:00
|
|
|
|
2011-01-10 01:51:20 +00:00
|
|
|
if ( win ) {
|
|
|
|
win.scrollTo(
|
2013-01-15 21:54:40 +00:00
|
|
|
!top ? val : window.pageXOffset,
|
|
|
|
top ? val : window.pageYOffset
|
2011-01-10 01:51:20 +00:00
|
|
|
);
|
2011-04-12 20:13:56 +00:00
|
|
|
|
2011-01-10 01:51:20 +00:00
|
|
|
} else {
|
2011-12-06 20:25:38 +00:00
|
|
|
elem[ method ] = val;
|
2011-01-10 01:51:20 +00:00
|
|
|
}
|
2011-12-06 20:25:38 +00:00
|
|
|
}, method, val, arguments.length, null );
|
2008-04-29 03:26:06 +00:00
|
|
|
};
|
2008-04-30 19:35:17 +00:00
|
|
|
});
|
2009-07-24 22:32:53 +00:00
|
|
|
|
2014-04-25 22:26:36 +00:00
|
|
|
// Support: Safari<7+, Chrome<37+
|
2013-09-11 00:24:26 +00:00
|
|
|
// Add the top/left cssHooks using jQuery.fn.position
|
|
|
|
// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084
|
2014-04-25 22:26:36 +00:00
|
|
|
// Blink bug: https://code.google.com/p/chromium/issues/detail?id=229280
|
|
|
|
// getComputedStyle returns percent when specified for top/left/bottom/right;
|
|
|
|
// rather than make the css module depend on the offset module, just check for it here
|
2013-09-11 00:24:26 +00:00
|
|
|
jQuery.each( [ "top", "left" ], function( i, prop ) {
|
2013-09-11 13:41:48 +00:00
|
|
|
jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,
|
2013-10-06 04:21:40 +00:00
|
|
|
function( elem, computed ) {
|
2013-09-11 00:45:11 +00:00
|
|
|
if ( computed ) {
|
|
|
|
computed = curCSS( elem, prop );
|
2014-04-25 22:26:36 +00:00
|
|
|
// If curCSS returns percentage, fallback to offset
|
2013-09-11 00:45:11 +00:00
|
|
|
return rnumnonpx.test( computed ) ?
|
|
|
|
jQuery( elem ).position()[ prop ] + "px" :
|
|
|
|
computed;
|
2013-09-11 00:24:26 +00:00
|
|
|
}
|
|
|
|
}
|
2013-09-11 00:45:11 +00:00
|
|
|
);
|
2013-09-11 00:24:26 +00:00
|
|
|
});
|
|
|
|
|
2013-09-09 01:25:27 +00:00
|
|
|
return jQuery;
|
2013-08-15 18:15:49 +00:00
|
|
|
});
|