Skip to content

Commit 616f83f

Browse files
committed
Fixed dragSearch issue with pagination combination
1 parent 35bcd22 commit 616f83f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
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.5.2 - 2016-03-15
1+
/*! jQuery Google Maps Store Locator - v2.5.2 - 2016-03-16
22
* http://www.bjornblog.com/web/jquery-store-locator-plugin
33
* Copyright (c) 2016 Bjorn Holine; Licensed MIT */
44

@@ -1742,7 +1742,7 @@
17421742
newCenterCoords = new google.maps.LatLng(mappingObj.lat, mappingObj.lng);
17431743
newAddress.geocode({'latLng': newCenterCoords}, function (data) {
17441744
if (data !== null) {
1745-
mappingObj.origin = data.address;
1745+
mappingObj.origin = addressInput = data.address;
17461746
_this.mapping(mappingObj);
17471747
} else {
17481748
// Unable to geocode

0 commit comments

Comments
 (0)