minecraftcodex/minecraftcodex/studio/templates/studio/modals.html

20 lines
671 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- MODALS -->
<!-- CONFIRM -->
<script id="modal-template-confirm" type="text/x-handlebars-template">
<div id="{{ "{{ modalId }}" }}" class="modal hide fade" tabindex="-1"
role="dialog" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3>{{ "{{ header }}" }}</h3>
</div>
<div class="modal-body">
{{ "{{{ content }}}" }}
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
<button class="btn btn-primary btn-submit">Save</button>
</div>
</div>
</script>