bootstrap-help-manager
Version:
Plugin and management console to create and manage help icons and content across an entire site.
38 lines (37 loc) • 1.65 kB
HTML
<script type="text/template" id="templateBHMInputGroup">
<span class="input-group-btn">
<button class="btn btn-default bhm-helper" data-bhm-helper="<%= id %>" type="button">
<span class="glyphicon glyphicon-question-sign"></span>
</button>
</span>
</script>
<script type="text/template" id="templateBHMButtonGroup">
<button class="btn btn-default bhm-helper" data-bhm-helper="<%= id %>" type="button">
<span class="glyphicon glyphicon-question-sign"></span>
</button>
</script>
<script type="text/template" id="templateBHMHelper">
<span class="bhm-helper" data-bhm-helper="<%= id %>">
<span class="glyphicon glyphicon-question-sign"></span>
</span>
</script>
<script type="text/template" id="templatebhmEditHtmlModal">
<div class="modal fade" tabindex="-1" role="dialog" aria-hidden="true" style="display: block;">
<div class="modal-dialog <%= large %>">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<h4 class="modal-title"><%= title %></h4>
</div>
<div class="modal-body">
<%= html %>
</div>
<div class="modal-footer">
<button class="btn btn-default" data-dismiss="modal" type="button">Close</button>
</div>
</div>
</div>
</div>
</script>