Created
December 16, 2017 14:35
-
-
Save dpineiden/bb46178aafe83c34ce7c6e858216bf03 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
$('.place.modal') | |
.modal({ | |
allowMultiple: true | |
}) | |
; | |
$('.second.modal') | |
.modal('attach events', '.first.modal #btn_new_localization') | |
; | |
$('.first.modal') | |
.modal('attach events', '.second.modal #submit_check') | |
; | |
// s | |
//Modal localization script | |
$('.second.modal').modal({ | |
onShow: function() { | |
console.log("Activar modal para agregar dirección"); | |
//inicializar(); | |
}, | |
onVisible: function() { | |
//inicializar(); | |
inicializar() | |
}, | |
onApprove: function() { | |
console.log("En caso de presionar guardar"); | |
enviar_ubicacion() | |
$('.first.modal').modal('show') | |
; | |
//inicializar(); | |
}, | |
}).modal('attach events', '.first.modal #btn_new_localization'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment