Use touchend instead of touchmove for touch support - saves a byte.

This commit is contained in:
Scott González 2010-09-23 10:13:20 -04:00
parent c106b7cb07
commit 1a3b0131d4

View file

@ -6,7 +6,7 @@ Possible additions:
$.extend( $.support, {
orientation: "orientation" in window,
touch: "ontouchmove" in document,
touch: "ontouchend" in document,
WebKitAnimationEvent: typeof WebKitTransitionEvent === "object",
pushState: !!history.pushState
});