Skip to content

Commit

Permalink
Update version (0.4.18)
Browse files Browse the repository at this point in the history
  • Loading branch information
hpneo committed May 11, 2015
1 parent d96b373 commit 2c24b34
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ grunt
Changelog
---------

0.4.18
-----------------------
* Fix bug in `array_map`

0.4.17
-----------------------
* Remove the http so the library (Google Maps call) will also work under SSL without warnings
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "gmaps",
"version": "0.4.17",
"version": "0.4.18",
"main": "gmaps.js"
}
4 changes: 2 additions & 2 deletions gmaps.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}(this, function() {

/*!
* GMaps.js v0.4.17
* GMaps.js v0.4.18
* http://hpneo.github.com/gmaps/
*
* Copyright 2015, Gustavo Leon
Expand Down Expand Up @@ -61,7 +61,7 @@ var array_map = function(array, callback) {

if (Array.prototype.map && array.map === Array.prototype.map) {
array_return = Array.prototype.map.call(array, function(item) {
callback_params = original_callback_params;
var callback_params = original_callback_params.slice(0);
callback_params.splice(0, 0, item);

return callback.apply(this, callback_params);
Expand Down
2 changes: 1 addition & 1 deletion gmaps.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion gmaps.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/gmaps.core.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ var array_map = function(array, callback) {

if (Array.prototype.map && array.map === Array.prototype.map) {
array_return = Array.prototype.map.call(array, function(item) {
callback_params = original_callback_params;
var callback_params = original_callback_params.slice(0);
callback_params.splice(0, 0, item);

return callback.apply(this, callback_params);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gmaps",
"version": "0.4.17",
"version": "0.4.18",
"description": "the easiest way to use Google Maps",
"main": "gmaps.js",
"scripts": {
Expand Down

0 comments on commit 2c24b34

Please sign in to comment.