collected assets

This commit is contained in:
2020-10-10 17:16:35 +00:00
parent 971d68c06a
commit c9bac3cbae
1727 changed files with 171062 additions and 0 deletions

16
assets/js/auto_slug.js Normal file
View File

@@ -0,0 +1,16 @@
window.addEventListener("load", function() {
(function($) {
$("input#id_title").on('input', function() {
var title = $("input#id_title").val();
var complete = function(res, status) {
if (status == "success") $("input#id_slug").val(res.responseText);
}
getUrl = window.location
baseUrl = getUrl.protocol + "//" + getUrl.host + "/" + getUrl.pathname.split('/')[0];
$.ajax({type:'GET', url: baseUrl + 'posts/func/slug_calc', data:{'title': title }, complete:complete});
});
})(django.jQuery);
});