mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-05 23:43:20 +00:00
9 lines
223 B
JavaScript
9 lines
223 B
JavaScript
import emojify from './components/emoji'
|
|
|
|
$(() => {
|
|
$.each($('.entry .content, .name, .account__header__content'), (_, content) => {
|
|
const $content = $(content);
|
|
$content.html(emojify($content.html()));
|
|
});
|
|
});
|