Set cssText, not style.
This commit is contained in:
parent
83e773be7c
commit
eb856e3eee
@ -221,7 +221,7 @@ Main =
|
|||||||
# Determine proper background color for dialogs if 4chan is using a special stylesheet.
|
# Determine proper background color for dialogs if 4chan is using a special stylesheet.
|
||||||
div = $.el 'div',
|
div = $.el 'div',
|
||||||
className: 'reply'
|
className: 'reply'
|
||||||
style: 'position: absolute; visibility: hidden;'
|
div.style.cssText = 'position: absolute; visibility: hidden;'
|
||||||
$.add d.body, div
|
$.add d.body, div
|
||||||
bgColor = window.getComputedStyle(div).backgroundColor
|
bgColor = window.getComputedStyle(div).backgroundColor
|
||||||
$.rm div
|
$.rm div
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user