Edge fix, always use async iframe onLoad rather than invoking it manually

pull/1/head
Caleb James DeLisle 2017-08-28 11:22:57 +02:00
parent abec07b1f9
commit e62faf7c7b
1 changed files with 6 additions and 1 deletions

View File

@ -55,7 +55,12 @@ define(['/api/config'], function (ApiConfig) {
// Asynchronous iframe loading is only required in IE>8 and Gecko (other reasons probably).
// Do not use it on WebKit as it'll break the browser-back navigation.
var useOnloadEvent = ( CKEDITOR.env.ie && !CKEDITOR.env.edge ) || CKEDITOR.env.gecko;
var useOnloadEvent = ( CKEDITOR.env.ie && !CKEDITOR.env.edge ) || CKEDITOR.env.gecko;
// CryptPad
// This breaks Edge so lets use async all of the time
useOnloadEvent = true;
if ( useOnloadEvent )
iframe.on( 'load', onLoad );