Created
March 12, 2020 22:09
-
-
Save FelixEhuan/f2aef3f5aca92c2a1746e68c697c37bb to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<div id="custom" class="notranslate col-xs-12"> | |
<form id="custom_address_form" data-url="/manage/Ajax/update_addressAjax.php" | |
onsubmit="saveButtonSubmitted()" | |
data-badge="<?= \ConstantsModule\BadgeTypes::LOCATION ?>" | |
data-totalSteps="<?= count($completePropertySteps); ?>" | |
data-complete="<?= $completePropertySteps['location']; ?>" | |
method="post"> | |
<input type="hidden" id="custom-longitude" name="longitude" value=""> | |
<input type="hidden" id="custom-latitude" name="latitude" value=""> | |
<input type="hidden" id="street-longitude" name="street-longitude" value=""> | |
<input type="hidden" id="street-latitude" name="street-latitude" value=""> | |
<input type="hidden" id="custom-heading" name="pov_heading" value=""> | |
<input type="hidden" id="custom-pitch" name="pov_pitch" value=""> | |
<div class="fs property-pages__button-holder"> | |
<button class="btn btn-primary fs property-pages__button ladda-button tracking_button" data_tracking_value="saved_the_map_position" data-style="expand-left" disabled> | |
<span class="ladda-label">Save</span> | |
<span class="ladda-spinner"></span> | |
</button> | |
</div> | |
</form> | |
<form id="reset_address_form" data-url="/manage/Ajax/update_addressAjax.php" | |
onsubmit="saveButtonSubmitted()" | |
data-badge="<?= \ConstantsModule\BadgeTypes::LOCATION ?>" | |
data-totalSteps="<?= count($completePropertySteps); ?>" | |
data-complete="<?= $completePropertySteps['location']; ?>" | |
method="post"> | |
<div class="fs property-pages__button-holder flex tooltip-box-wrapper__holder"> | |
<button id="fs-reset-address" class="fs property-pages__map_button ladda-button tracking_button" data_tracking_value="reset_address_position" data-style="expand-left" disabled> | |
<span class="ladda-label">Auto-detect position</span> | |
<span class="ladda-spinner"></span> | |
</button> | |
</div> | |
</form> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment