X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=samples%2Fplugins%2Fmagicline%2Fmagicline.html;h=0417235c47ce10ee3be3ff027aa756d03d43067d;hb=26ea9b471a69b563dfa9fb7c9c8d97db8e56de0e;hp=77e90931a17486235f2fbd701f86925f295880d2;hpb=860af3c4bde9866c53d5123c57e3dc6166e0fe1e;p=ckeditor.git diff --git a/samples/plugins/magicline/magicline.html b/samples/plugins/magicline/magicline.html index 77e9093..0417235 100644 --- a/samples/plugins/magicline/magicline.html +++ b/samples/plugins/magicline/magicline.html @@ -1,7 +1,7 @@ @@ -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. });