TinyMCE wpView: add small delay before inserting wpview sandbox iframes into the DOM. Fixes a problem in Firefox that may prevent rendering them. Fixes #29241.

git-svn-id: https://develop.svn.wordpress.org/trunk@29513 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
azaozz 2014-08-17 03:42:03 +00:00
parent 3211b09ed4
commit 652e929bff

View File

@ -127,6 +127,9 @@ window.wp = window.wp || {};
content.innerHTML = '';
// Seems Firefox needs a bit of time to insert/set the view nodes, or the iframe will fail
// especially when switching Text => Visual.
setTimeout( function() {
iframe = dom.add( content, 'iframe', {
src: tinymce.Env.ie ? 'javascript:""' : '',
frameBorder: '0',
@ -174,6 +177,7 @@ window.wp = window.wp || {};
setTimeout( resize, i * 700 );
}
}
}, 50 );
});
} else {
this.setContent( html );