Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
LIVECHATSDK.SDK.getEmojiShortcut().then(
  function(EmojiShortcutClass) {
    // Deep copy into new object
    window.Emoji_by_ShortName = jQuery.extend(true, {}, EmojiShortcutClass);
  }
);

...

Download the complete JSON Emoji shortnames and shortcuts file by clicking on the following box:

View file
nameemoji_shortcut.js

Using a regular expression pattern we can define a special sequence of characters (like : shortname:) to search and replace with the equivalent emoji stored in the LIVECHATSDK.LIVECHAT.emojiShortNames hash.

...