Recently changes to ImageLoader added a crossOrigin property to generated ImageElements in JS target HTML (e.g. when used by mui.display.Image).
It's currently on by default and you're able to opt out by adding a compilation flag to your project:
Many third party image hosts/services don't yet support this and you're forced to add the flag to your project otherwise loading their images are blocked. Additionally if your app is loading images off multiple third party servers it's possible that some may need the crossOrigin property set while others won't.
I propose we change it to be opt-in instead of opt-out, and also set it at the class level instead of globally.
Recently changes to
ImageLoaderadded a crossOrigin property to generatedImageElements in JS target HTML (e.g. when used bymui.display.Image).It's currently on by default and you're able to opt out by adding a compilation flag to your project:
Many third party image hosts/services don't yet support this and you're forced to add the flag to your project otherwise loading their images are blocked. Additionally if your app is loading images off multiple third party servers it's possible that some may need the
crossOriginproperty set while others won't.I propose we change it to be opt-in instead of opt-out, and also set it at the class level instead of globally.