1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-04-14 03:15:49 +02:00

Fix compose textarea not being focused after pasting an image in a reply

This commit is contained in:
chylex 2017-07-08 03:17:20 +02:00
parent 748b230ef5
commit b93f9a4b9a

View File

@ -482,6 +482,8 @@
if (item.type.startsWith("image/")){
$(this).closest(".rpl").find(".js-reply-popout").click(); // popout direct messages
uploader.addFilesToUpload([ item.getAsFile() ]);
$(".js-compose-text", ".js-docked-compose").focus();
break;
}
}