Skip to content
This repository has been archived by the owner on Aug 18, 2023. It is now read-only.

Commit

Permalink
fix emoji picker + bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
eramdam committed Mar 9, 2019
1 parent 72d4804 commit 8da3b93
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "BetterTweetDeck",
"version": "3.9.0",
"extension_version": "3.9.0",
"version": "3.9.1",
"extension_version": "3.9.1",
"description": "Adds some nice options on TweetDeck to provide a better experience on the webapp when used on Chrome.",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions src/js/util/tweetdeckUtils.js
Expand Up @@ -26,8 +26,8 @@ export function insertInsideComposer(string) {
return;
}

insertAtCursor(tweetCompose[0], string);
tweetCompose[0].dispatchEvent(new Event('change'));
insertAtCursor(tweetCompose, string);
tweetCompose.dispatchEvent(new Event('change'));
}

export function onComposerShown(callback) {
Expand Down

0 comments on commit 8da3b93

Please sign in to comment.