You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: js/utils/tap.js
+7-2
Original file line number
Diff line number
Diff line change
@@ -155,7 +155,8 @@ ionic.tap = {
155
155
(e.target.isContentEditable)||
156
156
(/^(file|range)$/i).test(e.target.type)||
157
157
(e.target.dataset ? e.target.dataset.preventScroll : e.target.getAttribute('data-prevent-default'))=='true'||// manually set within an elements attributes
158
-
(!!(/^(object|embed)$/i).test(e.target.tagName));// flash/movie/object touches should not try to scroll
158
+
(!!(/^(object|embed)$/i).test(e.target.tagName))||// flash/movie/object touches should not try to scroll
159
+
ionic.tap.isElementTapDisabled(e.target);// check if this element, or an ancestor, has `data-tap-disabled` attribute
0 commit comments