1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-11 10:22:53 +00:00
Files
mywebsite/mongoui/mongoui-master/node_modules/derby-ui-boot/modal/index.html
2015-06-25 16:28:41 -05:00

22 lines
645 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.
<modal: nonvoid>
<div x-bind="click: _click" style="{#unless :self.show}display:none{/}">
<div data-action="backdrop" class="modal-backdrop"></div>
<div class="modal">
<div class="modal-header">
<button data-action="close" class="close">×</button>
<h3>{@title}</h3>
</div>
<div class="modal-body">
{{@content}}
</div>
<div class="modal-footer">
{{#if @close}}
<a data-action="close" class="btn">{this}</a>
{{/}}
{{#if @primary}}
<a data-action="primary" class="btn btn-primary">{this}</a>
{{/}}
</div>
</div>
</div>