Skip to content

Commit f792a49

Browse files
committed
Updated location list output to work with new disableAlphaMarkers setting
1 parent 0cc142e commit f792a49

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! jQuery Google Maps Store Locator - v2.6.0 - 2016-06-08
1+
/*! jQuery Google Maps Store Locator - v2.6.0 - 2016-06-19
22
* http://www.bjornblog.com/web/jquery-store-locator-plugin
33
* Copyright (c) 2016 Bjorn Holine; Licensed MIT */
44

@@ -1025,7 +1025,7 @@
10251025
// Set up alpha character
10261026
var markerId = currentMarker.get('id');
10271027
// Use dot markers instead of alpha if there are more than 26 locations
1028-
if (this.settings.storeLimit === -1 || this.settings.storeLimit > 26 || (this.settings.fullMapStart === true && firstRun === true && (isNaN(this.settings.fullMapStartListLimit) || this.settings.fullMapStartListLimit > 26 || this.settings.fullMapStartListLimit === -1))) {
1028+
if (this.settings.disableAlphaMarkers === true || this.settings.storeLimit === -1 || this.settings.storeLimit > 26 || (this.settings.fullMapStart === true && firstRun === true && (isNaN(this.settings.fullMapStartListLimit) || this.settings.fullMapStartListLimit > 26 || this.settings.fullMapStartListLimit === -1))) {
10291029
indicator = markerId + 1;
10301030
}
10311031
else {

0 commit comments

Comments
 (0)