root/releases/elgg0.8rc2/_tinymce/docs/installation_example_01.html

Revision 758, 1.1 kB (checked in by sven, 2 years ago)

set svn property eol-style native on some files without it

  • Property svn:eol-style set to native
Line 
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 <title>Installation Example 01</title>
5 <link href="css/screen.css" rel="stylesheet" type="text/css" />
6 <script language="javascript" type="text/javascript" src="../jscripts/tiny_mce/tiny_mce_src.js"></script>
7 <script language="javascript" type="text/javascript">
8 tinyMCE.init({
9         mode : "textareas",
10         theme : "advanced"
11 });
12 </script>
13 </head>
14 <body>
15
16 <div class="header">
17         <h1>Installation example 01</h1>
18 </div>
19
20 <div class="content">
21         <h3>Example</h3>
22         <p>Open this page with "View source" or similar to see how the configuration is made.</p>
23         <form method="post">
24                 <textarea name="content" cols="50" rows="15">This is some content that will be editable with TinyMCE.</textarea>
25         </form>
26         </div>
27 </div>
28
29 <div class="footer">
30         <div class="helpindexlink"><a href="index.html">Index</a></div>
31         <div class="copyright">Copyright &copy; 2003-2006 <a href="http://www.moxiecode.com">Moxiecode Systems AB</a></div>
32         <br style="clear: both" />
33 </div>
34
35 </body>
36 </html>
Note: See TracBrowser for help on using the browser.