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
version: 1.0.0-alpha.12
browser: chrome 69
os: Mac
The process is stuck when I add to the rendered element one of these iframes: <iframe src="images/logo-icon.svg"></iframe> <iframe src="data:text/html,<p>Some HTML</p>"></iframe>
As far as I see it is stuck at function ResourceLoader.ready, line 187
Some of the promises remains pending forever and line return Promise.all(values) never reached.
If I change the original code to this one:
varvalues=keys.map(function(str){returnPromise.race([_this5.cache[str].catch(function(e){if(process.env.NODE_ENV!=='production'){_this5.logger.log('Unable to load image',e);}returnnull;}),newPromise(function(resolve,reject){setTimeout(resolve,5000,null);})]);});
the file is rendered but the iframe area remains blank.
The text was updated successfully, but these errors were encountered:
version: 1.0.0-alpha.12
browser: chrome 69
os: Mac
The process is stuck when I add to the rendered element one of these iframes:
<iframe src="images/logo-icon.svg"></iframe>
<iframe src="data:text/html,<p>Some HTML</p>"></iframe>
As far as I see it is stuck at function ResourceLoader.ready, line 187
Some of the promises remains pending forever and line
return Promise.all(values)
never reached.If I change the original code to this one:
the file is rendered but the iframe area remains blank.
The text was updated successfully, but these errors were encountered: