Ver Fonte

ComposeArea: Make inserted emoji non-draggable

Danilo Bargen há 6 anos atrás
pai
commit
038eedfc63
1 ficheiros alterados com 3 adições e 1 exclusões
  1. 3 1
      src/directives/compose_area.ts

+ 3 - 1
src/directives/compose_area.ts

@@ -574,7 +574,9 @@ export default [
 
                 // Insert a single emoji
                 function insertEmoji(emoji: threema.EmojiInfo): void {
-                    composeArea.insert_image(emoji.imgPath, emoji.emojiString, 'em');
+                    const img: HTMLElement = composeArea.insert_image(emoji.imgPath, emoji.emojiString, 'em');
+                    img.draggable = false;
+                    img.ondragstart = () => false;
                 }
 
                 // TODO