mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-03 04:14:42 +00:00
support 1.6.4 to 1.7.0 by defaulting to just props where the mouseHooks haven't been added
This commit is contained in:
parent
286f8c35ff
commit
f5c5c9a19a
1 changed files with 2 additions and 1 deletions
|
|
@ -23,7 +23,8 @@ var dataPropertyName = "virtualMouseBindings",
|
|||
touchTargetPropertyName = "virtualTouchID",
|
||||
virtualEventNames = "vmouseover vmousedown vmousemove vmouseup vclick vmouseout vmousecancel".split( " " ),
|
||||
touchEventProps = "clientX clientY pageX pageY screenX screenY".split( " " ),
|
||||
mouseEventProps = $.event.props.concat( $.event.mouseHooks.props ),
|
||||
mouseHookProps = $.event.mouseHooks ? $.event.mouseHooks.props : [],
|
||||
mouseEventProps = $.event.props.concat( mouseHookProps ),
|
||||
activeDocHandlers = {},
|
||||
resetTimerID = 0,
|
||||
startX = 0,
|
||||
|
|
|
|||
Loading…
Reference in a new issue