Skip to content

Commit 7cbdad3

Browse files
author
@soyjavi
committed
Fix error
1 parent e8774a6 commit 7cbdad3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/quo.gestures.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Quo.Gestures = do ($$ = Quo) ->
3232

3333
# Private methods
3434
_start = (ev) ->
35-
return ev.stopPropagation() if ev.srcElement?.tagName.toLowerCase() in _disabled_tags
35+
return ev.stopPropagation() if (ev.srcElement or ev.target).tagName.toLowerCase() in _disabled_tags
3636
_started = true
3737
_originalEvent = ev or event
3838
_fingers = _getFingers(ev)

0 commit comments

Comments
 (0)