mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
//TODO Rather than have seperate asset templates, convert 'id' into a template variable
16 lines
481 B
HTML
16 lines
481 B
HTML
{% load static %}
|
|
<script src="{% static "js/tooltip.js" %}"></script>
|
|
<script src="{% static "js/popover.js" %}"></script>
|
|
<script src="{% static "js/moment.js" %}"></script>
|
|
<script>
|
|
$(function () {
|
|
$('[data-toggle="tooltip"]').tooltip();
|
|
});
|
|
var whiteList = $.fn.tooltip.Constructor.Default.whiteList
|
|
whiteList.ins = []
|
|
whiteList.del = []
|
|
$(function() {
|
|
$('[data-toggle="popover"]').popover({whiteList: whiteList});
|
|
});
|
|
</script>
|