Last active
December 10, 2015 13:49
-
-
Save philsinatra/4443360 to your computer and use it in GitHub Desktop.
Bootstrap modal html markup
This file contains 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 class="modal hide" id="<#id#>" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> | |
<div class="modal-header"> | |
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> | |
<h3 id="myModalLabel"> | |
<#modal-title#> | |
</h3> | |
</div> | |
<div class="modal-body"> | |
<#modal-body#> | |
</div> | |
<div class="modal-footer"> | |
<button class="btn" onclick="page1_go_back()" data-dismiss="modal" aria-hidden="true"> Close </button> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment