Skip to content

Instantly share code, notes, and snippets.

var bootstrapCode =
'<script id="cke_actscrpt" type="text/javascript"' + ( CKEDITOR.env.ie ? ' defer="defer" ' : '' ) + '>' +
( isCustomDomain ? ( 'document.domain="' + document.domain + '";' ) : '' ) +
'var wasLoaded;' +
'function onload(){' +
'if(!wasLoaded)' + // FF3.6 calls onload twice for an unknown reason. Stop that.
'window.parent.CKEDITOR.tools.callFunction(' + this._.frameLoadedHandler + ',window);' +
'wasLoaded=1;' +
'}' +
( CKEDITOR.env.ie ? 'onload();' : 'document.addEventListener("DOMContentLoaded", onload, false );' ) +