X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=samples%2Fplugins%2Fmagicline%2Fmagicline.html;h=4af4114632155a9e0cf8e454767adcfe91cc5a55;hb=57bde48ab8a99810fe524a8b511b2f501bf7f318;hp=77e90931a17486235f2fbd701f86925f295880d2;hpb=860af3c4bde9866c53d5123c57e3dc6166e0fe1e;p=ckeditor.git diff --git a/samples/plugins/magicline/magicline.html b/samples/plugins/magicline/magicline.html index 77e9093..4af4114 100644 --- a/samples/plugins/magicline/magicline.html +++ b/samples/plugins/magicline/magicline.html @@ -1,7 +1,7 @@ @@ -12,7 +12,6 @@ For licensing, see LICENSE.html or http://ckeditor.com/license -

@@ -103,7 +102,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 +185,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. });