|
Revision 45, 0.5 kB
(checked in by jf.hovinne, 4 years ago)
|
|
Created Wymeditor object.
|
| Line | |
|---|
| 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|---|
| 2 | <html>
|
|---|
| 3 | <head>
|
|---|
| 4 | <title>WYMeditor</title>
|
|---|
| 5 | <style type="text/css">
|
|---|
| 6 | p { background-color: #f0f0ff; }
|
|---|
| 7 | </style>
|
|---|
| 8 | <script type="text/javascript">
|
|---|
| 9 | function init()
|
|---|
| 10 | {
|
|---|
| 11 | document.body.innerHTML=window.parent.wym_instance().html();
|
|---|
| 12 | document.designMode="on";
|
|---|
| 13 | if(window.parent.jQuery.browser.mozilla) document.execCommand("styleWithCSS",'',false);
|
|---|
| 14 | }
|
|---|
| 15 | </script>
|
|---|
| 16 | </head>
|
|---|
| 17 | <body contentEditable="true" onload="init()"></body>
|
|---|
| 18 | </html>
|
|---|