corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 <?xml version="1.0" encoding="UTF-8" ?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
4 <head>
5 <meta charset="UTF-8"></meta>
6 <title>ACE Autocompletion demo</title>
7 <style type="text/css" media="screen">
8 body { overflow: hidden; }
9 #editor {
10 margin: 0; position: absolute;
11 top: 0; bottom: 0; left: 0; right: 0;
12 }
13 </style>
14 </head>
15 <body>
16 <pre id="editor"></pre>
17  
18 <!-- load ace -->
19 <script src="../src/ace.js"></script>
20 <!-- load ace language_tools extension -->
21 <script src="../src/ext-language_tools.js"></script>
22 <script>
23 var langagueTools = require("ace/ext/language_tools");
24 var editor = ace.edit("editor");
25 editor.session.setMode("ace/mode/xml");
26 editor.setTheme("ace/theme/tomorrow");
27 });
28 ]]></script>
29  
30 <script src="./show_own_source.js"></script>
31 </body>
32 </html>