Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickarlt committed Jul 28, 2015
1 parent 58ab4d9 commit 195ac5f
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).

[Upcoming changes][unreleased]

## [2.0.0-beta.5](v2.0.0-beta.5)

## Fixed

* Removed stray `console.log` statements
* Added missing files to NPM
* Fixed removing of `FeatureLayer` from maps

## [2.0.0-beta.4](v2.0.0-beta.4)

### Changed
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "esri-leaflet",
"version": "v2.0.0-beta.4",
"version": "v2.0.0-beta.5",
"main": "dist/esri-leaflet.js",
"ignore": [
"**/.*",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "esri-leaflet",
"description": "Leaflet plugins for consuming ArcGIS Online and ArcGIS Server services.",
"version": "2.0.0-beta.4",
"version": "2.0.0-beta.5",
"author": "Patrick Arlt <[email protected]> (http://patrickarlt.com)",
"bugs": {
"url": "https://github.com/esri/esri-leaflet/issues"
Expand Down
2 changes: 1 addition & 1 deletion src/EsriLeaflet.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export var VERSION = '2.0.0-beta.4';
export var VERSION = '2.0.0-beta.5';

// import base
export { Support } from './Support';
Expand Down
4 changes: 2 additions & 2 deletions src/Layers/FeatureLayer/FeatureLayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export var FeatureLayer = FeatureManager.extend({
},

cellEnter: function (bounds, coords) {
if (!this._zooming) {
if (!this._zooming && this._map) {
L.Util.requestAnimFrame(L.Util.bind(function () {
var cacheKey = this._cacheKey(coords);
var cellKey = this._cellCoordsToKey(coords);
Expand All @@ -161,7 +161,7 @@ export var FeatureLayer = FeatureManager.extend({
},

cellLeave: function (bounds, coords) {
if (!this._zooming) {
if (!this._zooming && this._map) {
L.Util.requestAnimFrame(L.Util.bind(function () {
var cacheKey = this._cacheKey(coords);
var cellKey = this._cellCoordsToKey(coords);
Expand Down

0 comments on commit 195ac5f

Please sign in to comment.