collected assets
This commit is contained in:
16
assets/js/auto_slug.js
Normal file
16
assets/js/auto_slug.js
Normal 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);
|
||||
});
|
||||
59
assets/js/tag_completion.js
Normal file
59
assets/js/tag_completion.js
Normal file
@@ -0,0 +1,59 @@
|
||||
window.addEventListener("load", function() {
|
||||
(function($) {
|
||||
|
||||
function split( val ) {
|
||||
return val.split( /,\s*/ );
|
||||
}
|
||||
|
||||
function extractLast( term ) {
|
||||
return split( term ).pop();
|
||||
}
|
||||
|
||||
getUrl = window.location;
|
||||
baseUrl = getUrl.protocol + "//" + getUrl.host + "/" + getUrl.pathname.split('/')[0];
|
||||
remoteUrl = baseUrl + 'posts/func/tag_complete';
|
||||
|
||||
$( "input#id_tags" )
|
||||
// don't navigate away from the field on tab when selecting an item
|
||||
.on( "keydown", function( event ) {
|
||||
if ( event.keyCode === $.ui.keyCode.TAB &&
|
||||
$( this ).autocomplete( "instance" ).menu.active ) {
|
||||
event.preventDefault();
|
||||
}
|
||||
})
|
||||
.autocomplete({
|
||||
|
||||
source: function( request, response ) {
|
||||
$.getJSON( remoteUrl, {
|
||||
term: extractLast( request.term )
|
||||
}, response );
|
||||
},
|
||||
|
||||
search: function() {
|
||||
// custom minLength
|
||||
var term = extractLast( this.value );
|
||||
if ( term.length < 2 ) {
|
||||
return false;
|
||||
}
|
||||
},
|
||||
|
||||
focus: function() {
|
||||
// prevent value inserted on focus
|
||||
return false;
|
||||
},
|
||||
|
||||
select: function( event, ui ) {
|
||||
var terms = split( this.value );
|
||||
// remove the current input
|
||||
terms.pop();
|
||||
// add the selected item
|
||||
terms.push( ui.item.value );
|
||||
// add placeholder to get the comma-and-space at the end
|
||||
terms.push( "" );
|
||||
this.value = terms.join( ", " );
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
||||
})(django.jQuery);
|
||||
});
|
||||
Reference in New Issue
Block a user