aboutsummaryrefslogtreecommitdiffstats
path: root/src/offset.js
Commit message (Collapse)AuthorAgeFilesLines
...
* clean up offset. #4456 thanks pbcommBrandon Aaron2009-04-211-19/+17
|
* fix for #4439, offset.initialize can cause the page to jumpBrandon Aaron2009-03-301-4/+2
|
* remove trailing spacesBrandon Aaron2009-03-231-3/+3
|
* fix for #4115Brandon Aaron2009-03-191-4/+3
|
* fix for #4263, better support for nested fixed position elementsBrandon Aaron2009-03-191-1/+6
|
* using parseFloat for offset and position methods and removed num helper methodBrandon Aaron2009-03-171-11/+11
|
* return null when no matched elements exist for offset and positionBrandon Aaron2009-03-171-29/+29
|
* some clean up in the offset methodBrandon Aaron2009-03-171-10/+11
|
* Added some missing spaces - helps to calm XHTML error messages in Safari.John Resig2009-01-201-1/+1
|
* Moved from the old JSMin to using YUIMin for compressing the jQuery source. ↵John Resig2009-01-041-1/+1
| | | | Additionally landed some improvements from #3770 which dramatically reduce the filesize. The final minifed + gzipped size of jQuery went from 19817 bytes to 18063 bytes.
* Added a missing semicolon.John Resig2008-12-201-1/+1
|
* Removing remaining strict-mode warnings.John Resig2008-12-191-1/+1
|
* Standardized the type checks across core. isFunction and isArray now use ↵John Resig2008-11-171-1/+1
| | | | Object.prototype.toString to verify the type, .constructor use was removed in favor of typeof, typeof checks now use ===, undefined checks use === undefined. All of this is outlined in the new style guidelines: http://docs.jquery.com/JQuery_Core_Style_Guidelines#Type_Checks. Fixes bug #3618.
* fix the long standing 2px offset issue in QuirksMode in IEBrandon Aaron2008-11-131-3/+4
|
* new offset method, faster and no more browser detectionBrandon Aaron2008-11-101-90/+75
|
* core: fixed #2993: .offsetParent() will now return the body element in all ↵Scott González2008-06-061-1/+1
| | | | browsers for fixed position elements.
* core: fixed offset method for FF3 - FF3 seems to have problems reporting the ↵Paul Bakaus2008-05-251-1/+1
| | | | correct values with getBoundingClientRect on the body element
* Reverted back to using the num helper method in offset.jsBrandon Aaron2008-05-151-4/+6
|
* Added some unit tests for position method. Fixed issue with position in IE.Brandon Aaron2008-05-151-9/+9
|
* jquery offset: reducing more the code size.Ariel Flesler2008-05-141-8/+10
|
* jquery offset: reducing the code size.Ariel Flesler2008-05-141-10/+10
|
* jquery: removing unnecessary trailing and leading spaces & tabs.Ariel Flesler2008-05-131-29/+29
|
* core: make sure all source files end with a single blank line.Scott González2008-04-301-1/+1
|
* Merged dimensions with coreBrandon Aaron2008-04-291-24/+61
|
* Small optimization to offset (thanks Ariel Flesler)Brandon Aaron2008-04-211-6/+7
|
* Made outerHeight/outerWidth accept .outerWidth(true) to include the margin. ↵John Resig2008-03-151-6/+3
| | | | If any options are passed in it's assumed that you want the margin included.
* Imported the innerHeight and outerHeight methods from the Dimensions plugin.John Resig2008-03-151-0/+32
|
* Landed a minor fix for AIR (in the offset method).John Resig2008-02-061-1/+1
|
* offset: make sure there is a parent node to work on while calculating scroll ↵Brandon Aaron2007-12-191-1/+1
| | | | offsets (#2073)
* offset: make sure border width always gets calculated in pixelsBrandon Aaron2007-12-191-1/+1
|
* Fixed #2064Brandon Aaron2007-12-171-1/+1
|
* Fixed #1781 for warnings created on load by FF javascript.options.strict == ↵David Serduke2007-12-161-2/+2
| | | | true.
* Added more unit tests for offset. Fixed an offset issue relating to table ↵Brandon Aaron2007-12-121-12/+8
| | | | header cells in Opera
* offset now uses clientLeft and clientTop instead of calculating html border ↵Brandon Aaron2007-12-041-6/+5
| | | | in IE
* offset: fixes for correct body offsets in safari and mozilla (thanks Wizzud)Brandon Aaron2007-09-261-26/+15
|
* offset: added fixed position support and fixed opera issue with borders on ↵Brandon Aaron2007-09-211-8/+31
| | | | absolute and relative parents
* offset: do not add borders for table cellsBrandon Aaron2007-09-181-1/+1
|
* remove box global var from offsetBrandon Aaron2007-09-171-1/+1
|
* safari2 should just check the browser and versionBrandon Aaron2007-09-111-5/+5
|
* Include scroll offsets for everything but inline and table-row elementsBrandon Aaron2007-09-111-1/+1
|
* Couple of fixes to the offset methodBrandon Aaron2007-09-111-2/+2
|
* Reintroduced .offset() as a default include, added original author credits.John Resig2007-09-081-0/+3
|
* Added the new .offset() method, directly imported from Dimensions (heavily ↵John Resig2007-09-081-0/+88
worked over by both Brandon and John). Original source: http://brandonaaron.net/jquery/issues/dimensions/new_offset/jquery.offset.js