Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix(gestures): disable click hijack on mobile if jQuery is present
Browse files Browse the repository at this point in the history
Closes #1915.
  • Loading branch information
ThomasBurleson committed Apr 10, 2015
1 parent 61b7bb0 commit 2c57a82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/services/gesture/gesture.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
register: register,
// TODO only hijack clicks on Android < 4.4
// TODO allow an override for this (through provider?)
isHijackingClicks: isIos || isAndroid
isHijackingClicks: (isIos || isAndroid) && !jQuery
};

if (self.isHijackingClicks) {
Expand Down

0 comments on commit 2c57a82

Please sign in to comment.