Rename some stuff related to autocomplete

This commit is contained in:
Stefan Parviainen
2015-01-07 18:57:16 +01:00
parent e3d064ff22
commit 4e3aadc38a
5 changed files with 14 additions and 14 deletions

View File

@@ -3,7 +3,7 @@
*
* require jQuery, jquery.textcomplete
*/
function mysearch(term, callback, backend_url, extra_channels) {
function contact_search(term, callback, backend_url, extra_channels) {
var postdata = {
start:0,
count:100,
@@ -25,11 +25,11 @@ function mysearch(term, callback, backend_url, extra_channels) {
}).fail(function () {callback([]); }); // Callback must be invoked even if something went wrong.
}
function format(item) {
function contact_format(item) {
return "<div class='{0}' title='{4}'><img src='{1}'>{2} ({3})</div>".format(item.taggable, item.photo, item.name, ((item.label) ? item.nick + ' ' + item.label : item.nick), item.link )
}
function replace(item) {
function editor_replace(item) {
// $2 ensures that prefix (@,@!) is preserved
var id = item.id;
// 16 chars of hash should be enough. Full hash could be used if it can be done in a visually appealing way.
@@ -40,19 +40,19 @@ function replace(item) {
}
/**
* jQuery plugin 'contact_autocomplete'
* jQuery plugin 'editor_autocomplete'
*/
(function( $ ){
$.fn.contact_autocomplete = function(backend_url, extra_channels) {
$.fn.editor_autocomplete = function(backend_url, extra_channels) {
if (typeof extra_channels === 'undefined') extra_channels = false;
// Autocomplete contacts
contacts = {
match: /(^|\s)(@\!*)([^ \n]+)$/,
index: 3,
search: function(term, callback) { mysearch(term, callback, backend_url, extra_channels); },
replace: replace,
template: format,
search: function(term, callback) { contact_search(term, callback, backend_url, extra_channels); },
replace: editor_replace,
template: contact_format,
}
smilies = {

View File

@@ -574,7 +574,7 @@ function updateConvItems(mode,data) {
}
/* autocomplete @nicknames */
$(".comment-edit-form textarea").contact_autocomplete(baseurl+"/acl?f=&n=1");
$(".comment-edit-form textarea").editor_autocomplete(baseurl+"/acl?f=&n=1");
var bimgs = $(".wall-item-body img").not(function() { return this.complete; });
var bimgcount = bimgs.length;