Publish any build and add a breakpoint in __start__.js here
Inspect the value of gfxOptions.alpha and notice that it is always true. This is because deviceOptions.transparentCanvas / window.CONTEXT_OPTIONS.transparentCanvas is undefined.
This should be deviceOptions.alpha as seen here
For end users, if you are self hosting, you can edit the __start__.js file to use deviceOptions.alpha instead. ie
Publish any build and add a breakpoint in
__start__.js
hereInspect the value of
gfxOptions.alpha
and notice that it is always true. This is becausedeviceOptions.transparentCanvas
/window.CONTEXT_OPTIONS.transparentCanvas
is undefined.This should be
deviceOptions.alpha
as seen hereFor end users, if you are self hosting, you can edit the
__start__.js
file to usedeviceOptions.alpha
instead. ie