fix v2 on v1

This commit is contained in:
Henry Jameson 2018-11-26 05:35:27 +03:00
parent 91272dc555
commit a42a207e1b
1 changed files with 6 additions and 0 deletions

View File

@ -58,6 +58,12 @@ const setColors = (col, commit) => {
const body = document.body
body.style.display = 'none'
// This prevents white screen with v2 themes on v1 engine
if (!col.text) {
body.style.display = 'initial'
return
}
const styleEl = document.createElement('style')
head.appendChild(styleEl)
const styleSheet = styleEl.sheet