Skip to content
This repository has been archived by the owner on Jun 9, 2022. It is now read-only.

Commit

Permalink
Merge pull request #344 from vogdb/exclude-iOS8-from-scroll-transitio…
Browse files Browse the repository at this point in the history
…n-fix

Remove iOS8 and later from fix #57.
  • Loading branch information
rowanbeentje committed Jan 8, 2015
2 parents a22efe3 + 29cfb64 commit 17135ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/fastclick.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,11 +205,11 @@


/**
* iOS 6.0(+?) requires the target element to be manually derived
* iOS 6.0-7.* requires the target element to be manually derived
*
* @type boolean
*/
var deviceIsIOSWithBadTarget = deviceIsIOS && (/OS ([6-9]|\d{2})_\d/).test(navigator.userAgent);
var deviceIsIOSWithBadTarget = deviceIsIOS && (/OS [6-7]_\d/).test(navigator.userAgent);

/**
* BlackBerry requires exceptions.
Expand Down

0 comments on commit 17135ad

Please sign in to comment.