aboutsummaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-06-16 16:31:59 -0700
committerfriendica <info@friendica.com>2013-06-16 16:31:59 -0700
commit47ef689c927f8c8692bb98f190b7cc56d5e088ec (patch)
treef3b1e329c3aa82b056c67375b2f22ef7b702f977 /js
parentc4c80a2e472173dfed9b982c6705ccfbb6e6cdab (diff)
downloadvolse-hubzilla-47ef689c927f8c8692bb98f190b7cc56d5e088ec.tar.gz
volse-hubzilla-47ef689c927f8c8692bb98f190b7cc56d5e088ec.tar.bz2
volse-hubzilla-47ef689c927f8c8692bb98f190b7cc56d5e088ec.zip
implement taggable in auto-complete popups
Diffstat (limited to 'js')
-rw-r--r--js/fk.autocomplete.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/fk.autocomplete.js b/js/fk.autocomplete.js
index fc41f9cbe..cd0a1c044 100644
--- a/js/fk.autocomplete.js
+++ b/js/fk.autocomplete.js
@@ -80,7 +80,7 @@ ACPopup.prototype._search = function(){
that.cont.show();
$(data.items).each(function(){
html = "<img src='{0}' height='16px' width='16px'>{1} ({2})".format(this.photo, this.name, this.nick)
- that.add(html, this.nick.replace(' ','') + '+' + this.id + ' - ' + this.link);
+ that.add(this.taggable, html, this.nick.replace(' ','') + '+' + this.id + ' - ' + this.link);
});
} else {
that.cont.hide();
@@ -89,9 +89,9 @@ ACPopup.prototype._search = function(){
});
}
- ACPopup.prototype.add = function(label, value){
+ACPopup.prototype.add = function(taggable, label, value){
var that=this;
- var elm = $("<div class='acpopupitem' title='"+value+"'>"+label+"</div>");
+ var elm = $("<div class='acpopupitem " + taggable +"' title='"+value+"'>"+label+"</div>");
elm.click(function(e){
t = $(this).attr('title').replace(new RegExp(' \- .*'),'');
if(typeof(that.element.container) === "undefined") {