Created
March 6, 2020 10:42
-
-
Save be-mohand/5425dc5bda5158d7bb856b500ea0f481 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
// Set default location to Paris | |
if($('.homepage-body').length > 0 && $('#gmap-input-area').length > 0) { | |
$('#gmap-input-area').val('Paris'); | |
if($('#lat_search').length > 0) { | |
$('#lat_search').val('48.8485765'); | |
} | |
if($('#lng_search').length > 0) { | |
$('#lng_search').val('2.3421943'); | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment