diff options
author | Mario <mario@mariovavti.com> | 2020-11-18 12:28:20 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-11-18 12:28:20 +0000 |
commit | 791d5098a047adf67b6da705552e64ef966d0453 (patch) | |
tree | 77c2a117dc02f5fa455ddb4daae5e9f20684a949 | |
parent | f2fd12fbe544d5e87680aed98489698b4ca9ddd6 (diff) | |
download | volse-hubzilla-791d5098a047adf67b6da705552e64ef966d0453.tar.gz volse-hubzilla-791d5098a047adf67b6da705552e64ef966d0453.tar.bz2 volse-hubzilla-791d5098a047adf67b6da705552e64ef966d0453.zip |
fix regression
-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 f807fb366..6d39adc39 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -1171,7 +1171,7 @@ function doreply(parent, ident, owner, hint) { var sel = 'wall-item-body-' + ident.toString(); var quote = window.getSelection().toString().trim(); form.find('textarea').val("@{" + owner + "}" + ((($(window.getSelection().anchorNode).closest("#" + sel).attr("id") != sel) || (quote.length === 0))? " " : "\n[quote]" + quote + "[/quote]\n")); - $('#comment-edit-text-' + parent.toString()).focus(); + $('#comment-edit-text-' + parent.toString()).focus().trigger('click'); } function doscroll(parent, hidden) { |