Skip to content

Instantly share code, notes, and snippets.

@BlackPrincess
Created October 9, 2013 03:10
Show Gist options
  • Select an option

  • Save BlackPrincess/6895611 to your computer and use it in GitHub Desktop.

Select an option

Save BlackPrincess/6895611 to your computer and use it in GitHub Desktop.
jQuery.Event.prototype.getPageX = function() {
return this.originalEvent.touches ? this.originalEvent.touches[0].pageX : this.pageX;
};
jQuery.Event.prototype.getPageY = function() {
return this.originalEvent.touches ? this.originalEvent.touches[0].pageY : this.pageY;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment