diff options
author | Mario Vavti <mario@mariovavti.com> | 2019-05-02 12:58:24 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2019-05-02 12:58:24 +0200 |
commit | b6d598a0018301c47ae42340962720a7b5247e4a (patch) | |
tree | 5632f29b0fe929fb8e477862560e46b0b7992061 /view/js | |
parent | 516167c0f8579c8a068b6e52557e7e1109f897ae (diff) | |
download | volse-hubzilla-b6d598a0018301c47ae42340962720a7b5247e4a.tar.gz volse-hubzilla-b6d598a0018301c47ae42340962720a7b5247e4a.tar.bz2 volse-hubzilla-b6d598a0018301c47ae42340962720a7b5247e4a.zip |
provide xchan_url if there is no xchan_addr
Diffstat (limited to 'view/js')
-rw-r--r-- | view/js/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/js/main.js b/view/js/main.js index 325ad9a51..b99fc0586 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -1155,7 +1155,7 @@ function doreply(parent, ident, owner, hint) { var btn = i.html().replace(/<[^>]*>/g, '').trim(); i.html('<i class="fa fa-reply" ></i> ' + btn); i.prop('title', hint); - form.find('textarea').val("@{" + owner + "}\n"); + form.find('textarea').val("@{" + owner + "} "); $('#comment-edit-text-' + parent.toString()).focus(); } |