##// END OF EJS Templates
Unify thread and post creation into one method inside post manager, that can be called from almost anywhere (one step closer to ajax thread creation)
Unify thread and post creation into one method inside post manager, that can be called from almost anywhere (one step closer to ajax thread creation)

File last commit:

r1115:04410d86 default
r1997:be673d04 default
Show More
thread_create.js
42 lines | 1.2 KiB | application/javascript | JavascriptLexer
var MIN_INPUT_LENGTH = 2;
var URL_TAGS = '/api/tags';
var TAG_DELIMITER = ' ';
function split( val ) {
return val.split(TAG_DELIMITER);
}
function extractLast( term ) {
return split( term ).pop();
}
$( document ).ready(function() {
$('#id_tags').autocomplete({
source: function( request, response ) {
$.getJSON(URL_TAGS, {
term: extractLast( request.term )
}, response);
},
search: function() {
// custom minLength
var term = extractLast( this.value );
if (term.length < MIN_INPUT_LENGTH) {
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(TAG_DELIMITER);
return false;
}
});
});