summaryrefslogtreecommitdiffstats
path: root/module/web/static/js/libs/jquery.fastClick-0.2.js
diff options
context:
space:
mode:
Diffstat (limited to 'module/web/static/js/libs/jquery.fastClick-0.2.js')
-rw-r--r--module/web/static/js/libs/jquery.fastClick-0.2.js96
1 files changed, 0 insertions, 96 deletions
diff --git a/module/web/static/js/libs/jquery.fastClick-0.2.js b/module/web/static/js/libs/jquery.fastClick-0.2.js
deleted file mode 100644
index 49eb75d2a..000000000
--- a/module/web/static/js/libs/jquery.fastClick-0.2.js
+++ /dev/null
@@ -1,96 +0,0 @@
-/**
- * jQuery.fastClick.js
- *
- * Work around the 300ms delay for the click event in some mobile browsers.
- *
- * Code based on <http://code.google.com/mobile/articles/fast_buttons.html>
- *
- * @usage
- * $('button').fastClick(function() {alert('clicked!');});
- *
- * @license Under Creative Commons Attribution 3.0 License
- * @author Dave Hulbert (dave1010)
- * @version 0.2 2011-09-20
- */
-
-/*global document, window, jQuery, Math */
-
-(function($) {
-
-$.fn.fastClick = function(handler) {
- return $(this).each(function(){
- $.FastButton($(this)[0], handler);
- });
-};
-
-$.FastButton = function(element, handler) {
- var startX, startY;
-
- var reset = function() {
- $(element).unbind('touchend');
- $("body").unbind('touchmove.fastClick');
- };
-
- var onClick = function(event) {
- event.stopPropagation();
- reset();
- handler.call(this, event);
-
- if (event.type === 'touchend') {
- $.clickbuster.preventGhostClick(startX, startY);
- }
- };
-
- var onTouchMove = function(event) {
- if (Math.abs(event.originalEvent.touches[0].clientX - startX) > 10 ||
- Math.abs(event.originalEvent.touches[0].clientY - startY) > 10) {
- reset();
- }
- };
-
- var onTouchStart = function(event) {
- event.stopPropagation();
-
- $(element).bind('touchend', onClick);
- $("body").bind('touchmove.fastClick', onTouchMove);
-
- startX = event.originalEvent.touches[0].clientX;
- startY = event.originalEvent.touches[0].clientY;
- };
-
- $(element).bind({
- touchstart: onTouchStart,
- click: onClick
- });
-};
-
-$.clickbuster = {
- coordinates: [],
-
- preventGhostClick: function(x, y) {
- $.clickbuster.coordinates.push(x, y);
- window.setTimeout($.clickbuster.pop, 2500);
- },
-
- pop: function() {
- $.clickbuster.coordinates.splice(0, 2);
- },
-
- onClick: function(event) {
- var x, y, i;
- for (i = 0; i < $.clickbuster.coordinates.length; i += 2) {
- x = $.clickbuster.coordinates[i];
- y = $.clickbuster.coordinates[i + 1];
- if (Math.abs(event.clientX - x) < 25 && Math.abs(event.clientY - y) < 25) {
- event.stopPropagation();
- event.preventDefault();
- }
- }
- }
-};
-
-$(function(){
- document.addEventListener('click', $.clickbuster.onClick, true);
-});
-
-}(jQuery));