aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/main.js
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2020-11-18 12:28:20 +0000
committerMario <mario@mariovavti.com>2020-11-18 12:28:20 +0000
commit791d5098a047adf67b6da705552e64ef966d0453 (patch)
tree77c2a117dc02f5fa455ddb4daae5e9f20684a949 /view/js/main.js
parentf2fd12fbe544d5e87680aed98489698b4ca9ddd6 (diff)
downloadvolse-hubzilla-791d5098a047adf67b6da705552e64ef966d0453.tar.gz
volse-hubzilla-791d5098a047adf67b6da705552e64ef966d0453.tar.bz2
volse-hubzilla-791d5098a047adf67b6da705552e64ef966d0453.zip
fix regression
Diffstat (limited to 'view/js/main.js')
-rw-r--r--view/js/main.js2
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) {