1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
---|
2 | <html xmlns="http://www.w3.org/1999/xhtml"> |
---|
3 | <head> |
---|
4 | <meta content="text/html; charset=utf-8" http-equiv="content-type" /> |
---|
5 | <script type="text/javascript" src="../ckeditor_source.js"></script> |
---|
6 | <script src="sample.js" type="text/javascript"></script> |
---|
7 | <link href="sample.css" rel="stylesheet" type="text/css" /> |
---|
8 | <style id="styles" type="text/css"> |
---|
9 | .cke_dialog_background_cover |
---|
10 | { |
---|
11 | background-color: black !important; |
---|
12 | } |
---|
13 | </style> |
---|
14 | </head> |
---|
15 | <body> |
---|
16 | |
---|
17 | <textarea cols="80" id="editor1" name="editor1" rows="5"><p>This is some <strong>sample text</strong> inside IFrame. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea> |
---|
18 | |
---|
19 | <script type="text/javascript"> |
---|
20 | |
---|
21 | var editor1 = CKEDITOR.replace( 'editor1', |
---|
22 | { |
---|
23 | toolbar : [ [ 'Source', '-', 'Bold', 'Italic', 'Underline', 'Strike','-','Link', '-', 'Find' ] ] |
---|
24 | }); |
---|
25 | </script> |
---|
26 | </body> |
---|
27 | </html> |
---|