Fix reopening modal when modal already active
Created by: projct1
I need open new modal from current modal by click button inside current modal.
Now i can do this only with crutch:
/* onening new modal when modal already active */
setTimeout(function() {
$('#modal').modal();
}, 1000);
Otherwise i have error Uncaught Error: Modal is transitioning
Example here https://jsfiddle.net/rorc/nke1dvpz/