Merge pull request #5139 from openlayers/greenkeeper-closure-util-1.13.0

Update closure-util to version 1.13.0 🚀
This commit is contained in:
Frédéric Junod
2016-03-30 14:53:55 +02:00
5 changed files with 8 additions and 1 deletions
+1
View File
@@ -31,6 +31,7 @@
"*" "*"
], ],
"jscomp_off": [ "jscomp_off": [
"unnecessaryCasts",
"useOfGoogBase", "useOfGoogBase",
"lintChecks", "lintChecks",
"analyzerChecks", "analyzerChecks",
+1
View File
@@ -32,6 +32,7 @@
"*" "*"
], ],
"jscomp_off": [ "jscomp_off": [
"unnecessaryCasts",
"useOfGoogBase", "useOfGoogBase",
"lintChecks", "lintChecks",
"analyzerChecks" "analyzerChecks"
+1
View File
@@ -21,6 +21,7 @@
"*" "*"
], ],
"jscomp_off": [ "jscomp_off": [
"unnecessaryCasts",
"useOfGoogBase", "useOfGoogBase",
"lintChecks", "lintChecks",
"analyzerChecks" "analyzerChecks"
+1 -1
View File
@@ -32,7 +32,7 @@
"dependencies": { "dependencies": {
"async": "1.5.2", "async": "1.5.2",
"browserify": "13.0.0", "browserify": "13.0.0",
"closure-util": "1.12.0", "closure-util": "1.13.0",
"derequire": "2.0.3", "derequire": "2.0.3",
"fs-extra": "0.26.6", "fs-extra": "0.26.6",
"glob": "6.0.4", "glob": "6.0.4",
+4
View File
@@ -24,6 +24,7 @@ ol.animation.bounce = function(options) {
/** /**
* @param {ol.Map} map Map. * @param {ol.Map} map Map.
* @param {?olx.FrameState} frameState Frame state. * @param {?olx.FrameState} frameState Frame state.
* @return {boolean} Run this function in the next frame.
*/ */
function(map, frameState) { function(map, frameState) {
if (frameState.time < start) { if (frameState.time < start) {
@@ -62,6 +63,7 @@ ol.animation.pan = function(options) {
/** /**
* @param {ol.Map} map Map. * @param {ol.Map} map Map.
* @param {?olx.FrameState} frameState Frame state. * @param {?olx.FrameState} frameState Frame state.
* @return {boolean} Run this function in the next frame.
*/ */
function(map, frameState) { function(map, frameState) {
if (frameState.time < start) { if (frameState.time < start) {
@@ -103,6 +105,7 @@ ol.animation.rotate = function(options) {
/** /**
* @param {ol.Map} map Map. * @param {ol.Map} map Map.
* @param {?olx.FrameState} frameState Frame state. * @param {?olx.FrameState} frameState Frame state.
* @return {boolean} Run this function in the next frame.
*/ */
function(map, frameState) { function(map, frameState) {
if (frameState.time < start) { if (frameState.time < start) {
@@ -146,6 +149,7 @@ ol.animation.zoom = function(options) {
/** /**
* @param {ol.Map} map Map. * @param {ol.Map} map Map.
* @param {?olx.FrameState} frameState Frame state. * @param {?olx.FrameState} frameState Frame state.
* @return {boolean} Run this function in the next frame.
*/ */
function(map, frameState) { function(map, frameState) {
if (frameState.time < start) { if (frameState.time < start) {