A pop-up confirmation should display before deleting an address.
-
Framework Version: 0.1.1
If user click on delete for the saved address then it gets deleted without any confirmation. -
If user click on delete for the saved address then it gets deleted without any confirmation.
-
Just Add onclick="delete('Do you really want to delete this address?'')"
<script> function delete(message) { if (!confirm(message)) event.preventDefault(); } </script>
-