Skip to content

Commit

Permalink
[VER] v3.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
Viglino committed Mar 26, 2020
1 parent 0c09e28 commit 4703a21
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions dist/ol-ext.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* ol-ext - A set of cool extensions for OpenLayers (ol) in node modules structure
* @description ol3,openlayers,popup,menu,symbol,renderer,filter,canvas,interaction,split,statistic,charts,pie,LayerSwitcher,toolbar,animation
* @version v3.1.10
* @version v3.1.11
* @author Jean-Marc Viglino
* @see https://github.com/Viglino/ol-ext#,
* @license BSD-3-Clause
Expand Down Expand Up @@ -11049,14 +11049,14 @@ ol.Map.prototype.animateFeature = function(feature, fanim) {
if (l.getLayers) {
if (animLayer(l.getLayers().getArray())) return true;
} else {
l.animateFeature(feature, fanim);
return true;
var controller = l.animateFeature(feature, fanim);
return controller;
}
}
}
return false;
}
animLayer(this.getLayers().getArray());
return animLayer(this.getLayers().getArray());
};
/** Animate feature on a vector layer
* @fires animationstart, animationend
Expand Down
4 changes: 2 additions & 2 deletions dist/ol-ext.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ol-ext",
"version": "3.1.10",
"version": "3.1.11",
"description": "A set of cool extensions for OpenLayers (ol) in node modules structure",
"main": "dist/ol-ext.js",
"style": "dist/ol-ext.css",
Expand Down

0 comments on commit 4703a21

Please sign in to comment.