Skip to content

Commit

Permalink
Bump version to 2.1.4_3
Browse files Browse the repository at this point in the history
  • Loading branch information
pauloborges committed Feb 9, 2015
1 parent 0713fc9 commit 0c9e0de
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.1.4_3

* Fix bug on loading multiple plugins. (#5)

## 2.1.4_2

* Fix map loading in cordova builds in Android. (#3)
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Mapbox.js for [Meteor](https://www.meteor.com/) apps. Current Mapbox version: `2
## Install

$ cd to/my/meteor/project
$ meteor add pauloborges:[email protected].4_2
$ meteor add pauloborges:[email protected].4_3

or (if you want to modify the code):

Expand Down Expand Up @@ -56,7 +56,7 @@ check if it finished loading. This function is reactive.
var map = L.mapbox.map('map', MY_MAP_ID);
}
});


// Using a template's rendered callback
Meteor.startup(function(){
Expand All @@ -66,9 +66,8 @@ check if it finished loading. This function is reactive.
Template.Map.rendered = function () {
this.autorun(function () {
if (Mapbox.loaded()) {
L.mapbox.accessToken = TOKEN;
L.mapbox.accessToken = TOKEN;
var map = L.mapbox.map('map', MAP_ID);
}
});
};

2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
Package.describe({
name: 'pauloborges:mapbox',
summary: 'Mapbox.js for Meteor apps',
version: '2.1.4_2',
version: '2.1.4_3',
git: 'https://github.com/pauloborges/meteor-mapbox.git'
});

Expand Down

0 comments on commit 0c9e0de

Please sign in to comment.