Skip to content

Commit

Permalink
update version number
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickarlt committed Jan 6, 2014
1 parent 634f8ad commit 34151a9
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ module.exports = function(grunt) {
browser: true,
globals: {
XMLHttpRequest: true,
ActiveXObject: true,
module: true,
L:true
L: true,
console: true
}
},
all: ['Gruntfile.js', 'src/**/*.js']
Expand Down
6 changes: 5 additions & 1 deletion dist/esri-leaflet-src.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Esri-Leaflet - v0.0.1-rc.2 - 2014-01-05
/*! Esri-Leaflet - v0.0.1-beta.3 - 2014-01-05
* Copyright (c) 2014 Environmental Systems Research Institute, Inc.
* Apache License*/
(function (root, factory) {
Expand Down Expand Up @@ -3143,6 +3143,10 @@ L.esri.Mixins.identifiableLayer = {
bounds: null,
zoom: null,
onAdd: function(map){
if(!map.attributionControl && console){
console.warn("L.esri.BasemapLayer requires attribution. Please set attributionControl to true on your map");
return;
}
L.TileLayer.prototype.onAdd.call(this, map);
if(this._dynamicAttribution){
this.on("load", this._handleTileUpdates, this);
Expand Down
4 changes: 2 additions & 2 deletions dist/esri-leaflet.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/extras/clustered-feature-layer-src.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Esri-Leaflet - v0.0.1-rc.2 - 2014-01-05
/*! Esri-Leaflet - v0.0.1-beta.3 - 2014-01-05
* Copyright (c) 2014 Environmental Systems Research Institute, Inc.
* Apache License*/
/* globals Terraformer, L */
Expand Down
2 changes: 1 addition & 1 deletion dist/extras/clustered-feature-layer.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion dist/extras/esri-basemaps-src.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Esri-Leaflet - v0.0.1-rc.2 - 2014-01-05
/*! Esri-Leaflet - v0.0.1-beta.3 - 2014-01-05
* Copyright (c) 2014 Environmental Systems Research Institute, Inc.
* Apache License*/
/* globals L */
Expand Down Expand Up @@ -532,6 +532,10 @@ L.esri.Mixins.identifiableLayer = {
bounds: null,
zoom: null,
onAdd: function(map){
if(!map.attributionControl && console){
console.warn("L.esri.BasemapLayer requires attribution. Please set attributionControl to true on your map");
return;
}
L.TileLayer.prototype.onAdd.call(this, map);
if(this._dynamicAttribution){
this.on("load", this._handleTileUpdates, this);
Expand Down
4 changes: 2 additions & 2 deletions dist/extras/esri-basemaps.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": "Esri-Leaflet",
"version": "0.0.1-rc.2",
"version": "0.0.1-beta.3",
"description": "ArcGIS Plugins for Leaflet",
"main": "src/esri-leaflet.js",
"devDependencies": {
Expand Down

0 comments on commit 34151a9

Please sign in to comment.