From 2d22a58324194ebb37b042658db5a8fc2d94b3a7 Mon Sep 17 00:00:00 2001 From: Friendika Date: Wed, 26 Oct 2011 15:14:12 -0700 Subject: @ tag completion enhancements, show url on hover and respect custom attags --- js/fk.autocomplete.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'js') diff --git a/js/fk.autocomplete.js b/js/fk.autocomplete.js index 1484758ad..6a1f1965a 100644 --- a/js/fk.autocomplete.js +++ b/js/fk.autocomplete.js @@ -65,7 +65,7 @@ ACPopup.prototype._search = function(){ that.cont.show(); $(data.items).each(function(){ html = "{1} ({2})".format(this.photo, this.name, this.nick) - that.add(html, this.nick); + that.add(html, this.nick + ' - ' + this.link); }); } else { that.cont.hide(); @@ -78,7 +78,7 @@ ACPopup.prototype.add = function(label, value){ var that=this; var elm = $("
"+label+"
"); elm.click(function(e){ - t = $(this).attr('title'); + t = $(this).attr('title').replace(new RegExp(' \- .*'),''); el=$(that.element); sel = el.getSelection(); sel.start = sel.start- that.searchText.length; -- cgit v1.2.3