Fix unescape > symbol inside the style tags to make the CSS works

This commit is contained in:
Wu Cheng-Han 2017-10-05 09:59:57 +08:00
parent 8979f215ab
commit b0b417cefc
1 changed files with 4 additions and 0 deletions

View File

@ -552,6 +552,10 @@ export function finishView (view) {
} catch (err) {
console.warn(err)
}
// unescape > symbel inside the style tags
view.find('style').each((key, value) => {
$(value).html($(value).html().replace(/>/g, '>'))
})
// render title
document.title = renderTitle(view)
}