Removed console.log

This commit is contained in:
Jonas Dellinger
2017-05-28 18:51:15 +02:00
parent d5864415c3
commit 5d65916d2a

View File

@@ -43,9 +43,6 @@ Vue.component('message', {
while (s.match(styleRegex)) { //Any better solution would be appreciated :P
s = s.replace(styleRegex, (str, style, inner) => `<em style="${styleDict[style]}">${inner}</em>`)
}
console.log(s);
return s.replace(/<span[^>]*><\/span[^>]*>/g, '');
},
escape(unsafe) {