X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=samples%2Fplugins%2Fmagicline%2Fmagicline.html;h=2ee60ee44ace136a97a01db1705054c336f00c71;hb=53700a2c9aa44599d0a74cb0e0b5e5fbdead0fcd;hp=77e90931a17486235f2fbd701f86925f295880d2;hpb=860af3c4bde9866c53d5123c57e3dc6166e0fe1e;p=ckeditor.git diff --git a/samples/plugins/magicline/magicline.html b/samples/plugins/magicline/magicline.html index 77e9093..2ee60ee 100644 --- a/samples/plugins/magicline/magicline.html +++ b/samples/plugins/magicline/magicline.html @@ -103,7 +103,9 @@ For licensing, see LICENSE.html or http://ckeditor.com/license // window.onload event handler. CKEDITOR.replace( 'editor1', { - extraPlugins: 'magicline' // Ensure that magicline plugin, which is required for this sample, is loaded. + extraPlugins: 'magicline', // Ensure that magicline plugin, which is required for this sample, is loaded. + allowedContent: true // Switch off the ACF, so very complex content created to + // show magicline's power isn't filtered. } ); @@ -184,7 +186,9 @@ CKEDITOR.replace( 'editor2', { CKEDITOR.replace( 'editor2', { extraPlugins: 'magicline', // Ensure that magicline plugin, which is required for this sample, is loaded. - magicline_color: 'blue' // Blue line + magicline_color: 'blue', // Blue line + allowedContent: true // Switch off the ACF, so very complex content created to + // show magicline's power isn't filtered. });