JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
b1c00fcbb378f3ee5c32a526a7ab6bdced5a1173
[peach-html5-editor.git] / editor_tests_coffee.html
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4         <meta charset="UTF-8">
5         <link rel="icon" href="data:;base64,iVBORw0KGgo=">
6         <title>html editor tester</title>
7         <style>
8                 textarea {
9                         box-sizing: border-box;
10                         width: 100%;
11                 }
12         </style>
13 </head>
14 <body>
15         <h1>WHEIC editor test page (CoffeeScript version)</h1>
16         <p>This version of the test page compiles the CoffeeScript files in the browser. This is slower to load, but saves you having to rebuild as you work (or even install CoffeeScript).</p>
17         <form action="#" method="get">
18         <p>In:<br><textarea rows="9" cols="22" name="in" id="in">&lt;p&gt;Normal &lt;strong&gt;Bold &lt;em&gt; Italic+Bold&lt;/strong&gt; Italic&lt;/em&gt; Normal&lt;/p&gt;</textarea></p>
19         <p><input id="button" type="submit" value="loading..." disabled></p>
20         <p>Out:<br><textarea rows="9" cols="22" name="out" id="out" readonly></textarea></p>
21                 
22         </form>
23         <script src="parser.coffee" type="text/coffeescript"></script>
24         <script src="editor.coffee" type="text/coffeescript"></script>
25         <script src="editor_tests.coffee" type="text/coffeescript"></script>
26         <script src="coffee-script.js"></script>
27 </body>
28 </html>