fastclick-hand.js

FastClick implementation for PointerEvents

Based on Google's FastButton implementation

Usage

<script>
    var button = document.querySelector(".button");
    new PointerEventsFastClick.FastClick(button, function(){
		// run some code
	});
</script>

Optional jQuery plugin, when jQuery is avalaible

<script>
    $('.button').FastClick(function() {
		// run some code
	});
</script>