Add curly braces in type annotation

This commit is contained in:
Frederic Junod
2017-01-10 08:49:11 +01:00
parent 39bc701c25
commit 6e4aa39e9d

View File

@@ -217,7 +217,7 @@ ol.View.prototype.animate = function(var_args) {
}
var series = [];
for (var i = 0; i < animationCount; ++i) {
var options = /** @type olx.AnimationOptions */ (arguments[i]);
var options = /** @type {olx.AnimationOptions} */ (arguments[i]);
var animation = /** @type {ol.ViewAnimation} */ ({
start: start,