fix blur of the current textarea after submit of a twist

This commit is contained in:
Simon Grim 2018-10-20 04:43:24 +05:00
parent 5ee1b4e5ee
commit b440cb2600

View File

@ -2514,9 +2514,10 @@ function postSubmit(e, oldLastPostId) {
textArea.val('').attr('placeholder', polyglot.t('Your message was sent!'));
btnPostSubmit.closest('form').find('.post-area-remaining').text('');
if (btnPostSubmit.closest('.post-area,.post-reply-content')) {
$('.post-area-new').removeClass('open').find('textarea').blur();
};
if (btnPostSubmit.closest('.post-area,.post-reply-content').length) {
btnPostSubmit.closest('.post-area-new').removeClass('open')
.find('textarea').blur();
}
textArea.data('unicodeConversionStack', []);
textArea.data('disabledUnicodeRules', []);
}