Add FastClick in mobile-full-screen example

This commit is contained in:
Frederic Junod
2014-11-04 09:44:55 +01:00
parent 4c8d8c21dc
commit 1253177ae4
5 changed files with 36 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
/**
* @fileoverview Externs for FastClick 1.0.3
* @see https://github.com/ftlabs/fastclick
* @externs
*/
/**
* @type {Object}
* @const
*/
var FastClick = {};
/**
* @typedef {{
* touchBoundary: (number|undefined),
* tapDelay: (number|undefined)
* }}
*/
FastClick.AttachOptions;
/**
* @param {Element} layer
* @param {FastClick.AttachOptions=} opt_options
*/
FastClick.attach = function(layer, opt_options) {};