Landed a minor fix for AIR (in the offset method).
authorJohn Resig <jeresig@gmail.com>
Wed, 6 Feb 2008 03:48:22 +0000 (03:48 +0000)
committerJohn Resig <jeresig@gmail.com>
Wed, 6 Feb 2008 03:48:22 +0000 (03:48 +0000)
src/offset.js

index 8ee5680..b29fcc7 100644 (file)
@@ -9,7 +9,7 @@ jQuery.fn.offset = function() {
                    offsetChild  = elem,
                    offsetParent = elem.offsetParent, 
                    doc          = elem.ownerDocument,
-                   safari2      = safari && parseInt(version) < 522,
+                   safari2      = safari && parseInt(version) < 522 && !/adobeair/i.test(userAgent),
                    fixed        = jQuery.css(elem, "position") == "fixed";
        
                // Use getBoundingClientRect if available