Skip to content

Commit

Permalink
Merge branch 't/9645'
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinmar committed Nov 16, 2012
2 parents 6914eb6 + 185334c commit 52e9232
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
5 changes: 5 additions & 0 deletions plugins/htmlwriter/samples/outputforflash.html
Expand Up @@ -66,6 +66,11 @@ <h1 class="samples">
'\n\nPlease load the sample from a web server instead.' );

var editor = CKEDITOR.replace( 'editor1', {
/*
* Ensure that htmlwriter plugin, which is required for this sample, is loaded.
*/
extraPlugins: 'htmlwriter',

height: 290,
width: '100%',
toolbar: [
Expand Down
5 changes: 5 additions & 0 deletions plugins/htmlwriter/samples/outputhtml.html
Expand Up @@ -57,6 +57,11 @@ <h1 class="samples">
<script>

CKEDITOR.replace( 'editor1', {
/*
* Ensure that htmlwriter plugin, which is required for this sample, is loaded.
*/
extraPlugins: 'htmlwriter',

/*
* Style sheet for the contents
*/
Expand Down
7 changes: 5 additions & 2 deletions plugins/magicline/samples/magicline.html
Expand Up @@ -103,7 +103,9 @@ <h1 class="samples">
// <textarea>, or inside a <head><script> in a
// window.onload event handler.

CKEDITOR.replace( 'editor1' );
CKEDITOR.replace( 'editor1', {
extraPlugins: 'magicline' // Ensure that magicline plugin, which is required for this sample, is loaded.
} );

</script>
</div>
Expand Down Expand Up @@ -182,7 +184,8 @@ <h1 class="samples">
// window.onload event handler.

CKEDITOR.replace( 'editor2', {
magicline_color: 'blue' // Blue line
extraPlugins: 'magicline', // Ensure that magicline plugin, which is required for this sample, is loaded.
magicline_color: 'blue' // Blue line
});

</script>
Expand Down

0 comments on commit 52e9232

Please sign in to comment.