mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-22 22:23:23 +00:00
core: move jquery to header section
This commit is contained in:
parent
4afd7a0023
commit
4d866843e1
@ -16,6 +16,9 @@
|
|||||||
{% else %}
|
{% else %}
|
||||||
<link rel="stylesheet" href="{{ static('core/font-awesome/css/font-awesome.min.css') }}">
|
<link rel="stylesheet" href="{{ static('core/font-awesome/css/font-awesome.min.css') }}">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
<!-- Jquery declared here to be accessible in every django widgets -->
|
||||||
|
<script src="{{ static('core/js/jquery-3.1.0.min.js') }}"></script>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
@ -248,7 +251,6 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
-->
|
-->
|
||||||
{% block script %}
|
{% block script %}
|
||||||
<script src="{{ static('core/js/jquery-3.1.0.min.js') }}"></script>
|
|
||||||
<script src="{{ static('core/js/ui/jquery-ui.min.js') }}"></script>
|
<script src="{{ static('core/js/ui/jquery-ui.min.js') }}"></script>
|
||||||
<script src="{{ static('core/js/ui/i18n/datepicker-fr.js') }}"></script>
|
<script src="{{ static('core/js/ui/i18n/datepicker-fr.js') }}"></script>
|
||||||
<script src="{{ static('core/js/jquery.datetimepicker.full.min.js') }}"></script>
|
<script src="{{ static('core/js/jquery.datetimepicker.full.min.js') }}"></script>
|
||||||
|
@ -33,19 +33,13 @@
|
|||||||
|
|
||||||
// Custom markdown parser
|
// Custom markdown parser
|
||||||
function customMarkdownParser(plainText, preview) {
|
function customMarkdownParser(plainText, preview) {
|
||||||
// Wait for jquery to load
|
$.ajax({
|
||||||
var waitForJquery = setInterval(function () {
|
url: "{{ markdown_api_url }}",
|
||||||
if (typeof $ != 'undefined'){
|
method: "POST",
|
||||||
clearInterval(waitForJquery)
|
data: { text: plainText, csrfmiddlewaretoken: getCookie('csrftoken') },
|
||||||
$.ajax({
|
}).done(function (msg) {
|
||||||
url: "{{ markdown_api_url }}",
|
preview.innerHTML = msg;
|
||||||
method: "POST",
|
});
|
||||||
data: { text: plainText, csrfmiddlewaretoken: getCookie('csrftoken') },
|
|
||||||
}).done(function (msg) {
|
|
||||||
preview.innerHTML = msg;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}, 10);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Pretty markdown input
|
// Pretty markdown input
|
||||||
|
Loading…
Reference in New Issue
Block a user