Merge pull request #3557 from fredj/fastclick

Update FastClick externs to version 1.0.6
This commit is contained in:
Frédéric Junod
2015-04-14 16:57:00 +02:00
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ template: "example-verbatim.html"
<div id="map" class="map"></div> <div id="map" class="map"></div>
<script src="../resources/jquery.min.js" type="text/javascript"></script> <script src="../resources/jquery.min.js" type="text/javascript"></script>
<script src="../resources/example-behaviour.js" type="text/javascript"></script> <script src="../resources/example-behaviour.js" type="text/javascript"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/fastclick/1.0.3/fastclick.js" type="text/javascript"></script> <script src="http://cdnjs.cloudflare.com/ajax/libs/fastclick/1.0.6/fastclick.min.js" type="text/javascript"></script>
<script src="loader.js?id=mobile-full-screen" type="text/javascript"></script> <script src="loader.js?id=mobile-full-screen" type="text/javascript"></script>
<div style="display: none;"> <div style="display: none;">
+3 -2
View File
@@ -1,5 +1,5 @@
/** /**
* @fileoverview Externs for FastClick 1.0.3 * @fileoverview Externs for FastClick 1.0.6
* @see https://github.com/ftlabs/fastclick * @see https://github.com/ftlabs/fastclick
* @externs * @externs
*/ */
@@ -13,7 +13,8 @@ var FastClick = {};
/** /**
* @typedef {{ * @typedef {{
* touchBoundary: (number|undefined), * touchBoundary: (number|undefined),
* tapDelay: (number|undefined) * tapDelay: (number|undefined),
* tapTimeout: (number|undefined)
* }} * }}
*/ */
FastClick.AttachOptions; FastClick.AttachOptions;