We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
at line 1034 of jquery.storelocator.js (getAddressByMarker function):
getAddressByMarker
var formattedAddress = null;
results in a string with a null concatenated at the beginning, which makes directions fails on the destination address.
null
I suggest to initialize with an empy string:
var formattedAddress = '';
The text was updated successfully, but these errors were encountered:
Thanks, yes I already have this fixed in the development branch. Just working through one other thing but it should get merged in within a day or two.
Sorry, something went wrong.
You're right, I didn't notice. Closing.
Thanks.
No branches or pull requests
at line 1034 of jquery.storelocator.js (
getAddressByMarker
function):var formattedAddress = null;
results in a string with a
null
concatenated at the beginning, which makes directions fails on the destination address.I suggest to initialize with an empy string:
var formattedAddress = '';
The text was updated successfully, but these errors were encountered: