diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2015-07-27 22:14:48 +0200 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2015-07-27 22:14:48 +0200 |
commit | 93bee4701d14202045a88aab156da0daf9418430 (patch) | |
tree | aa57c268723238adad2953a4c89b7fc6a2d4d178 /src | |
parent | bf48c21d225c31f0f9b5441d95f73615ca3dcfdb (diff) | |
download | jquery-93bee4701d14202045a88aab156da0daf9418430.tar.gz jquery-93bee4701d14202045a88aab156da0daf9418430.zip |
Core: Adjust comments & tests after dropping Safari 6 support
Support comments that mentioned only Safari < 7 were checked & updated
to account for bugs existing in newer versions as well; Safari 6 support
test results were removed.
Refs gh-2482
Diffstat (limited to 'src')
-rw-r--r-- | src/event.js | 2 | ||||
-rw-r--r-- | src/offset.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/event.js b/src/event.js index 04ee403d5..53cfcd5ee 100644 --- a/src/event.js +++ b/src/event.js @@ -593,7 +593,7 @@ jQuery.event = { event[ prop ] = originalEvent[ prop ]; } - // Support: Safari 6.0+ + // Support: Safari 6-8+ // Target should not be a text node (#504, #13143) if ( event.target.nodeType === 3 ) { event.target = event.target.parentNode; diff --git a/src/offset.js b/src/offset.js index f0139d5ef..23a4b2a18 100644 --- a/src/offset.js +++ b/src/offset.js @@ -203,7 +203,7 @@ jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function( }; }); -// Support: Safari<7+, Chrome<37+ +// Support: Safari<7-8+, Chrome<37-44+ // Add the top/left cssHooks using jQuery.fn.position // Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084 // Blink bug: https://code.google.com/p/chromium/issues/detail?id=229280 |