X-Git-Url: https://jasonwoof.com/gitweb/?p=ckeditor.git;a=blobdiff_plain;f=samples%2Fplugins%2Fmagicline%2Fmagicline.html;h=2ee60ee44ace136a97a01db1705054c336f00c71;hp=77e90931a17486235f2fbd701f86925f295880d2;hb=9ff13aaba26bcf5e5315d53a58465507b3c44196;hpb=bbcc7027149eeec7493a43022d1de04081346667 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. });