Created
July 31, 2013 09:05
-
-
Save tarlepp/6120551 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
| // Open bootbox modal | |
| var modal = openBootboxDialog(title, content, buttons, false); | |
| modal.on('hidden.bs.modal', function() { | |
| console.log('hidden'); | |
| }); | |
| modal.on('show.bs.modal', function() { | |
| console.log('show'); | |
| }); | |
| // Make form init when dialog is opened. | |
| modal.on('shown.bs.modal', function() { | |
| console.log('shown'); | |
| initProjectPhases(modal); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment