Skip to content

Commit

Permalink
Switch off ACF in magicline sample.
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinmar committed Mar 20, 2013
1 parent 1fa09dd commit 76139ec
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions plugins/magicline/samples/magicline.html
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ <h1 class="samples">
// 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.
} );

</script>
Expand Down Expand Up @@ -184,7 +186,9 @@ <h1 class="samples">

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.
});

</script>
Expand Down

0 comments on commit 76139ec

Please sign in to comment.