mirror of
https://github.com/Hopiu/django-markdownx.git
synced 2026-04-11 08:50:59 +00:00
22 lines
573 B
HTML
22 lines
573 B
HTML
<!doctype html>
|
|
<html lang="pl">
|
|
<head>
|
|
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
|
|
<script type="text/javascript">
|
|
$(document).ready(function(){
|
|
console.log("ready");
|
|
|
|
$('.markdownx').on('markdownx.init', function() {
|
|
console.log("INIT");
|
|
});
|
|
|
|
$('.markdownx').on('markdownx.update', function(e, response) {
|
|
console.log("UPDATE" + response);
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
{% block content %}{% endblock %}
|
|
</body>
|
|
</html>
|