Skip to content

Commit 2642b42

Browse files
committed
Merge branch 'development'
2 parents e016edd + b662f35 commit 2642b42

File tree

7 files changed

+14
-8
lines changed

7 files changed

+14
-8
lines changed

dist/assets/js/plugins/storeLocator/jquery.storelocator.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! jQuery Google Maps Store Locator - v2.0.6 - 2015-03-28
1+
/*! jQuery Google Maps Store Locator - v2.0.7 - 2015-04-02
22
* http://www.bjornblog.com/web/jquery-store-locator-plugin
33
* Copyright (c) 2015 Bjorn Holine; Licensed MIT */
44

@@ -905,7 +905,7 @@
905905
'markerid': markerId,
906906
'marker' : indicator,
907907
'length' : distLength,
908-
'origin' : addressInput
908+
'origin' : originalOrigin
909909
})]
910910
};
911911
},

dist/assets/js/plugins/storeLocator/jquery.storelocator.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/assets/js/plugins/storeLocator/templates/location-list-description.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<div class="loc-phone">{{phone}}</div>
1111
<div class="loc-web"><a href="{{web}}" target="_blank">{{niceURL web}}</a></div>
1212
{{#if distance}}<div class="loc-dist">{{distance}} {{length}}</div>
13-
<div class="loc-directions"><a href="http://maps.google.com/maps?saddr={{origin}}&amp;daddr={{address}} {{address2}} {{city}}, {{state}} {{postal}}" target="_blank">Directions</a></div>{{/if}}
13+
<div class="loc-directions"><a href="https://maps.google.com/maps?saddr={{origin}}&amp;daddr={{address}} {{address2}} {{city}}, {{state}} {{postal}}" target="_blank">Directions</a></div>{{/if}}
1414
</div>
1515
</div>
1616
</li>

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-storelocator-plugin",
3-
"version": "2.0.6",
3+
"version": "2.0.7",
44
"description": "This jQuery plugin takes advantage of Google Maps API version 3 to create an easy to implement store locator. No back-end programming is required, you just need to feed it KML, XML, or JSON data with all the location information.",
55
"repository": {
66
"type": "git",

readme.md

+6
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@ for even faster loading.
2727

2828
## Changelog
2929

30+
### Version 2.0.7
31+
32+
* Fixed bug where reverse geocoding wasn't passing the origin to the templates (autogeocode and default location),
33+
causing incorrect direction links.
34+
* Updated location list directions link to use https.
35+
3036
### Version 2.0.6
3137

3238
* Added the option to filter data exclusively rather than inclusively with the exclusiveFiltering setting.

src/js/jquery.storelocator.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -903,7 +903,7 @@
903903
'markerid': markerId,
904904
'marker' : indicator,
905905
'length' : distLength,
906-
'origin' : addressInput
906+
'origin' : originalOrigin
907907
})]
908908
};
909909
},

storelocator.jquery.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"title": "jQuery Google Maps Store Locator",
44
"description": "This jQuery plugin takes advantage of Google Maps API version 3 to create an easy to implement store locator. No back-end programming is required, you just need to feed it KML, XML, or JSON data with all the location information.",
55
"keywords": ["jquery","locator","store", "location", "locations", "maps", "map", "stores", "find"],
6-
"version": "2.0.6",
6+
"version": "2.0.7",
77
"author": {
88
"name": "Bjorn Holine",
99
"url": "http://www.bjornblog.com/"

0 commit comments

Comments
 (0)