scratch – Blame information for rev 58

Subversion Repositories:
Rev:
Rev Author Line No. Line
58 office 1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="UTF-8">
5 <title>Trumbowyg by Alex-D</title>
6 <link rel="stylesheet" href="css/main.css">
7 <link rel="stylesheet" href="../dist/ui/trumbowyg.css">
8 </head>
9 <body>
10 <div id="main" role="main">
11 <header>
12 <h1>Default usage of Trumbowyg</h1>
13  
14 <p>
15 No plugin, no options. Just naked Trumbowyg.
16 </p>
17 </header>
18  
19 <div id="editor">
20 <h2>This editor is the default build of Trumbowyg.</h2>
21 <p>
22 Lorem ipsum dolor sit amet, consectetur adipisicing elit. Possimus, aliquam, minima fugiat placeat provident optio nam reiciendis eius beatae quibusdam!
23 </p>
24 <p>
25 The text is derived from Cicero's De Finibus Bonorum et Malorum (On the Ends of Goods and Evils, or alternatively [About] The Purposes of Good and Evil ). The original passage began: Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit (Translation: &quot;Neither is there anyone who loves grief itself since it is grief and thus wants to obtain it&quot;).
26 </p>
27 </div>
28  
29 <h2>The code</h2>
30 <code><pre>
31 $('#editor').trumbowyg();
32 </pre></code>
33 </div>
34 <script src="../bower_components/jquery/dist/jquery.min.js"></script>
35 <script src="../dist/trumbowyg.js"></script>
36 <script>
37 /** Default editor configuration **/
38 $('#editor').trumbowyg();
39 </script>
40 </body>
41 </html>