diff options
| author | Mario Vavti <mario@mariovavti.com> | 2017-05-31 09:56:35 +0200 | 
|---|---|---|
| committer | Mario Vavti <mario@mariovavti.com> | 2017-05-31 09:56:35 +0200 | 
| commit | 47d55694a4c84b6c12c0db61a69bcac8b671b20e (patch) | |
| tree | b15e96f4ea67e2214a66a9d28dafaf53d25b98ec /view/js/autocomplete.js | |
| parent | 087f9784e3c5a860ed2b86e7f9e8e9f312038546 (diff) | |
| parent | f0e615dee529e031663576286345141ad2996974 (diff) | |
| download | volse-hubzilla-2.4.tar.gz volse-hubzilla-2.4.tar.bz2 volse-hubzilla-2.4.zip | |
Merge branch '2.4RC'2.4
Diffstat (limited to 'view/js/autocomplete.js')
| -rw-r--r-- | view/js/autocomplete.js | 18 | 
1 files changed, 14 insertions, 4 deletions
| diff --git a/view/js/autocomplete.js b/view/js/autocomplete.js index 5a616b6fc..313e501e2 100644 --- a/view/js/autocomplete.js +++ b/view/js/autocomplete.js @@ -60,12 +60,20 @@ function contact_format(item) {  		var desc = ((item.label) ? item.nick + ' ' + item.label : item.nick);  		if(typeof desc === 'undefined') desc = '';  		if(desc) desc = ' ('+desc+')'; -		return "<div class='{0}' title='{4}'><img class='dropdown-menu-img-sm' src='{1}'><span class='contactname'>{2}</span><span class='dropdown-sub-text'>{3}</span><div class='clear'></div></div>".format(item.taggable, item.photo, item.name, desc, item.link); +		return "<div class='{0} dropdown-item dropdown-notification clearfix' title='{4}'><img class='menu-img-2' src='{1}'><span class='contactname'>{2}</span><span class='dropdown-sub-text'>{3}</span></div>".format(item.taggable, item.photo, item.name, desc, item.link);  	}  	else  		return "<div>" + item.text + "</div>";  } +function smiley_format(item) { +	return "<div class='dropdown-item'>" + item.icon + ' ' + item.text + "</div>"; +} + +function bbco_format(item) { +	return "<div class='dropdown-item'>" + item + "</div>"; +} +  function editor_replace(item) {  	if(typeof item.replace !== 'undefined') {  		return '$1$2' + item.replace; @@ -181,15 +189,16 @@ function string2bb(element) {  			index: 3,  			search: function(term, callback) { contact_search(term, callback, backend_url, 'c', extra_channels, spinelement=false); },  			replace: editor_replace, -			template: contact_format, +			template: contact_format  		};  		smilies = {  			match: /(^|\s)(:[a-z_:]{2,})$/,  			index: 2,  			search: function(term, callback) { $.getJSON('/smilies/json').done(function(data) { callback($.map(data, function(entry) { return entry.text.indexOf(term) === 0 ? entry : null; })); }); }, -			template: function(item) { return item.icon + item.text; }, +			//template: function(item) { return item.icon + item.text; },  			replace: function(item) { return "$1" + item.text + ' '; }, +			template: smiley_format  		};  		this.attr('autocomplete','off');  		this.textcomplete([contacts,smilies], {className:'acpopup', zIndex:1020}); @@ -321,7 +330,8 @@ function string2bb(element) {  				else {  					return '\[' + element + '\] ';  				} -			} +			}, +			template: bbco_format  		};  		this.attr('autocomplete','off'); | 
