Jane Puleston Jones Posted June 1, 2020 Share Posted June 1, 2020 Since the update of v83 in Google Chrome on 31/05/2020 a number of clients have been experiencing issues with theirproduction environmentwith certain functionality not working. This is due to the iFrame and how this has been implementedin JavascriptVizualisationaddon/plugin that is causinga crash. Google have removed the ability to by default allow downloads from IFrames https://www.chromestatus.com/feature/5706745674465280 We need the optionsandbox="allow-downloads"in the JSViz Iframes 10.3.9 Link to comment Share on other sites More sharing options...
Shandilya Peddi Posted June 1, 2020 Share Posted June 1, 2020 Can you try the following and see if it helps, function renderCore ( sfdata ) { allowModals (); ... }function allowModals () { for ( const i of parent.document.getElementsByTagName('iframe')) { if (!i.sandbox.supports('allow-modals')) { console.warn("Your browser doesn't support the 'allow-modals' attribute :("); break; } if (i.sandbox.contains('allow-modals')) continue; console.info(i, "doesn't allow modals"); i.sandbox.add('allow-modals'); i.contentWindow.location.reload(); console.info(i, 'now allows modals'); } } Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now