Fix #581: Collabora / wopi: le bouton "imprimer" ne fonctionne pas.

This commit is contained in:
Pol Dellaiera 2022-04-26 11:47:46 +02:00
parent 329fb05db0
commit dc48b4b9c7
No known key found for this signature in database
GPG Key ID: D476DFE9C67467CA

View File

@ -14,7 +14,10 @@ window.addEventListener('DOMContentLoaded', function(e) {
office_frame.setAttribute('allowfullscreen', 'true');
// The sandbox attribute is needed to allow automatic redirection to the O365 sign-in page in the business user flow
office_frame.setAttribute('sandbox', 'allow-downloads allow-scripts allow-same-origin allow-forms allow-popups allow-top-navigation allow-popups-to-escape-sandbox');
office_frame.setAttribute(
'sandbox',
'allow-downloads allow-scripts allow-same-origin allow-forms allow-modals allow-popups allow-top-navigation allow-popups-to-escape-sandbox'
);
frameholder.appendChild(office_frame);
document.getElementById('office_form').submit();