about summary refs log tree commit diff
path: root/app/assets/javascripts/extras.jsx
blob: 93f827044b94426d473c0b14762cbe711ee76529 (plain) (blame)
1
2
3
4
5
6
7
8
import emojify from './components/emoji'

$(() => {
  $.each($('.entry .content, .name, .account__header__content'), (_, content) => {
    const $content = $(content);
    $content.html(emojify($content.html()));
  });
});