]> git.mxchange.org Git - friendica.git/commitdiff
rework autocomplete: space after inserting contact without id
authorrabuzarus <>
Sat, 16 Apr 2016 13:58:11 +0000 (15:58 +0200)
committerRoland Haeder <roland@mxchange.org>
Sun, 1 May 2016 11:48:52 +0000 (13:48 +0200)
js/autocomplete.js

index 51e01c6f7e18ad0c1897868a84337168ff0b526c..108447ad22281ce37892a6e014ad21d3936813d0 100644 (file)
@@ -87,7 +87,7 @@ function editor_replace(item) {
 
        // don't add the id if it is empty (the id empty eg. if there are unknow contacts in thread)
        if(id.length < 1)
-               return '$1$2' + item.nick;
+               return '$1$2' + item.nick.replace(' ', '') + ' ';
 
        // 16 chars of hash should be enough. Full hash could be used if it can be done in a visually appealing way.
        // 16 chars is also the minimum length in the backend (otherwise it's interpreted as a local id).