Skip to content

Instantly share code, notes, and snippets.

@jnbt
Last active August 29, 2015 14:15
Show Gist options
  • Save jnbt/2295d39c25da972036ea to your computer and use it in GitHub Desktop.
Save jnbt/2295d39c25da972036ea to your computer and use it in GitHub Desktop.
Renders emojis from the emoji-cheat-sheet.com
// Renders emojis from the emoji-cheat-sheet.com
// Requirements: emojify.js (https://github.com/hassankhan/emojify.js)
// Usage:
// <p data-bind="message.text | emojify | raw"></p>
Batman.mixin(Batman.Filters, {
emojify: function(content){
if(typeof(content) === "undefined" || content === null)
return undefined;
return emojify.replace(content);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment