diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2013-09-11 08:41:48 -0500 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2013-09-11 08:41:48 -0500 |
commit | 2e850fb802fc01f61c8e3b9030e8391c5b283a4e (patch) | |
tree | 0f8a47b50b384683060e96ebacb9914456859859 /src/offset.js | |
parent | 48a3549bc572bebb5dc581e4818e15f1443b3de2 (diff) | |
download | jquery-2e850fb802fc01f61c8e3b9030e8391c5b283a4e.tar.gz jquery-2e850fb802fc01f61c8e3b9030e8391c5b283a4e.zip |
The cssHook from addGetHookIf wasn't actually getting added
Diffstat (limited to 'src/offset.js')
-rw-r--r-- | src/offset.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/offset.js b/src/offset.js index ee46717fd..9809d1079 100644 --- a/src/offset.js +++ b/src/offset.js @@ -187,7 +187,7 @@ jQuery.each( {scrollLeft: "pageXOffset", scrollTop: "pageYOffset"}, function( me // getComputedStyle returns percent when specified for top/left/bottom/right // rather than make the css module depend on the offset module, we just check for it here jQuery.each( [ "top", "left" ], function( i, prop ) { - addGetHookIf( jQuery.cssHooks[ prop ], support.pixelPosition, + jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition, function ( elem, computed ) { if ( computed ) { computed = curCSS( elem, prop ); |