Fixed improperly quoted html attributes for emoticons

Этот коммит содержится в:
hmhealey
2015-10-22 09:47:04 -04:00
родитель 14e24650c5
Коммит 74402df462

Просмотреть файл

@@ -133,7 +133,7 @@ export function handleEmoticons(text, tokens) {
const alias = `MM_EMOTICON${index}`;
tokens.set(alias, {
value: `<img align="absmiddle" alt=${match} class="emoji" src=${getImagePathForEmoticon(name)} title=${match} />`,
value: `<img align="absmiddle" alt="${match}" class="emoji" src="${getImagePathForEmoticon(name)}" title="${match}" />`,
originalText: match
});