@devchitchat/chat 4.1.0 → 4.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -839,7 +839,6 @@ export default function CallIsland(root) {
|
|
|
839
839
|
picker.onEmojiPickHandler = (e) => {
|
|
840
840
|
const { emoji } = e.detail
|
|
841
841
|
closeEmojiPicker()
|
|
842
|
-
closeReactionContextMenu()
|
|
843
842
|
ws.send({ t: 'reaction.add', body: { msg_id: msgId, channel_id: channelId, emoji } })
|
|
844
843
|
}
|
|
845
844
|
picker.removeEventListener('emoji:pick', picker._boundEmojiPick)
|
|
@@ -887,7 +886,6 @@ export default function CallIsland(root) {
|
|
|
887
886
|
|
|
888
887
|
document.addEventListener('keydown', e => {
|
|
889
888
|
if (e.key === 'Escape') {
|
|
890
|
-
closeReactionContextMenu()
|
|
891
889
|
closeEmojiPicker()
|
|
892
890
|
}
|
|
893
891
|
})
|