mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2024-12-14 10:51:21 +01:00
actually enable tooltip
This commit is contained in:
parent
45eda26e7c
commit
d5dd2c3423
@ -1,6 +1,13 @@
|
||||
{% extends "helpdesk/base.html" %}{% load i18n %}
|
||||
{% block helpdesk_title %}{% trans "Edit followup" %}{% endblock %}
|
||||
{% block helpdesk_head %}{% endblock helpdesk_head %}
|
||||
|
||||
{% block helpdesk_head %}
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$("[data-toggle=tooltip]").tooltip();
|
||||
});
|
||||
</script>
|
||||
{% endblock helpdesk_head %}
|
||||
|
||||
{% block helpdesk_body %}
|
||||
|
||||
|
@ -24,6 +24,8 @@
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
$("[data-toggle=tooltip]").tooltip();
|
||||
});
|
||||
|
||||
function processAddFileClick() {
|
||||
|
Loading…
Reference in New Issue
Block a user