1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-11 02:34:08 +02:00

Fix emoji keyboard button not working after re-enabling w/ compose drawer open

Closes 
This commit is contained in:
chylex 2019-04-04 20:05:52 +02:00
parent 7944a24d3c
commit a03b222a95

View File

@ -56,12 +56,6 @@ enabled(){
this.prevComposeMustache = TD.mustaches["compose/docked_compose.mustache"];
window.TDPF_injectMustache("compose/docked_compose.mustache", "append", '<div class="cf margin-t--12 margin-b--30">', buttonHTML);
let maybeDockedComposePanel = $(".js-docked-compose");
if (maybeDockedComposePanel.length){
maybeDockedComposePanel.find(".cf.margin-t--12.margin-b--30").first().append(buttonHTML);
}
this.getDrawerInput = () => {
return $(".js-compose-text", me.composeDrawer);
};
@ -413,6 +407,15 @@ enabled(){
me.currentKeyboard.style.top = getKeyboardTop()+"px";
}
};
// re-enabling
let maybeDockedComposePanel = $(".js-docked-compose");
if (maybeDockedComposePanel.length){
maybeDockedComposePanel.find(".cf.margin-t--12.margin-b--30").first().append(buttonHTML);
this.drawerToggleEvent({}, { activeDrawer: "compose" });
}
}
ready(){
@ -473,7 +476,7 @@ ready(){
};
// line reading
let skinToneState = 0;
for(let line of contents.split("\n")){