createTouch - Deprecated
createTouch has been deprecated for a while now.
This fix uses the same technique used by Modernizr - 377a6303b3/feature-detects/touchevents.js (L40)
master
parent
b242f49e67
commit
4ec1cbee55
|
@ -14,7 +14,7 @@
|
||||||
Snap.plugin(function (Snap, Element, Paper, glob) {
|
Snap.plugin(function (Snap, Element, Paper, glob) {
|
||||||
var elproto = Element.prototype,
|
var elproto = Element.prototype,
|
||||||
has = "hasOwnProperty",
|
has = "hasOwnProperty",
|
||||||
supportsTouch = "createTouch" in glob.doc,
|
supportsTouch = (('ontouchstart' in window) || window.TouchEvent || window.DocumentTouch && document instanceof DocumentTouch),
|
||||||
events = [
|
events = [
|
||||||
"click", "dblclick", "mousedown", "mousemove", "mouseout",
|
"click", "dblclick", "mousedown", "mousemove", "mouseout",
|
||||||
"mouseover", "mouseup", "touchstart", "touchmove", "touchend",
|
"mouseover", "mouseup", "touchstart", "touchmove", "touchend",
|
||||||
|
|
Loading…
Reference in New Issue