Ticket #3579: 3579.patch
File 3579.patch, 1.5 KB (added by , 16 years ago) |
---|
-
_samples/divreplace.html
8 8 <title>Replace DIV - CKEditor Sample</title> 9 9 <style id="styles" type="text/css"> 10 10 11 div11 #html div 12 12 { 13 13 border: solid 2px Transparent; 14 14 padding-left: 15px; 15 15 padding-right: 15px; 16 16 } 17 17 18 div:hover18 #html div:hover 19 19 { 20 20 border-color: black; 21 21 } -
_samples/sample.html
64 64 </div> 65 65 <!-- This <fieldset> holds the HTML that you will usually find in your 66 66 pages. --> 67 <fieldset title="Output">67 <fieldset id="html" title="Output"> 68 68 <legend>Output</legend> 69 <script id="html"type="text/javascript">69 <script type="text/javascript"> 70 70 //<![CDATA[ 71 71 document.write( CKEDITOR.samples.htmlData ); 72 72 //]]> … … 74 74 </fieldset> 75 75 <!-- This <fieldset> contains the output readable code that illustrates 76 76 how to use the editor, having the results shown in this sample. --> 77 <fieldset title="Code">77 <fieldset id="code" title="Code"> 78 78 <legend>Code</legend> 79 <script id="code"type="text/javascript">79 <script type="text/javascript"> 80 80 //<![CDATA[ 81 81 document.write( CKEDITOR.samples.codeData ); 82 82 //]]>