@@ -214,7 +214,7 @@ steal('jquery', function($){
 
 	$.Event.prototype.vector = function() {
 		// Get the first touch element for touch events
-		var touches = "ontouchend" in document && this.originalEvent.touches && this.originalEvent.touches.length
+		var touches = "ontouchend" in document && this.originalEvent.changedTouches.length
 				? this.originalEvent.changedTouches[0] : this;
 		if ( this.originalEvent.synthetic ) {
 			var doc = document.documentElement,