You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In createCSS, the s array is populated with the different possible browser-prefixed CSS values for background. The unprefixed value in s[0] is actually being prefixed with undefined, which probably causes it to never use the unprefixed version.
In
createCSS
, thes
array is populated with the different possible browser-prefixed CSS values for background. The unprefixed value ins[0]
is actually being prefixed withundefined
, which probably causes it to never use the unprefixed version.The prefix array's first value is
""
, so this must be some tricky casting issue during the string concat. Maybe try using thejoin
instead?The text was updated successfully, but these errors were encountered: