logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 7ff84cb07e799ae997b1f8bcc1e1a1bddd178dfb
parent: e6fbf0334fa665069c61a0b238cec3350949e88f
Author: Yamagishi Kazutoshi <ykzts@desire.sh>
Date:   Thu, 11 May 2017 09:22:40 +0900

Refine unescapeHTML (#2977)


Diffstat:

Mapp/javascript/mastodon/actions/notifications.js7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/app/javascript/mastodon/actions/notifications.js b/app/javascript/mastodon/actions/notifications.js @@ -1,7 +1,6 @@ import api, { getLinks } from '../api' import Immutable from 'immutable'; import IntlMessageFormat from 'intl-messageformat'; -import { unescape } from 'lodash'; import { fetchRelationships } from './accounts'; export const NOTIFICATIONS_UPDATE = 'NOTIFICATIONS_UPDATE'; @@ -25,7 +24,11 @@ const fetchRelatedRelationships = (dispatch, notifications) => { } }; -const unescapeHTML = (html) => unescape(html).replace(/<\/?\w+(?:\s[^>]*)?>/g, ''); +const unescapeHTML = (html) => { + const wrapper = document.createElement('div'); + wrapper.innerHTML = html; + return wrapper.textContent; +} export function updateNotifications(notification, intlMessages, intlLocale) { return (dispatch, getState) => {