Your IP : 216.73.216.182


Current Path : /var/www/html/components/com_community/assets/app/src/utils/
Upload File :
Current File : /var/www/html/components/com_community/assets/app/src/utils/parseEmoji.js

export default function() {
    const $ = window.jQuery;
    const selectors = [
        '.joms-stream__body [data-type=stream-content]',
        '.joms-js--comment-content',
        '.joms-stream__body .colorful-status__container'
    ];
    const $elms = $(selectors.join(','));
    
    $elms.each((idx, elm) => {
        window.twemoji.parse(elm);
    })
}