corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <meta charset="UTF-8">
5 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
6 <title>Editor</title>
7 <style type="text/css" media="screen">
8 body {
9 overflow: hidden;
10 }
11 #editor {
12 margin: 0;
13 position: absolute;
14 top: 0;
15 bottom: 0;
16 left: 0;
17 right: 0;
18 }
19 </style>
20 </head>
21 <body>
22  
23 <pre id="editor"></pre>
24  
25 <!-- load ace -->
26 <script src="../src/ace.js"></script>
27 <script>
28 var editor = ace.edit("editor")
29 editor.setTheme("ace/theme/twilight")
30 editor.session.setMode("ace/mode/html")
31  
32 // add command to lazy-load keybinding_menu extension
33 editor.commands.addCommand({
34 name: "showKeyboardShortcuts",
35 bindKey: {win: "Ctrl-Alt-h", mac: "Command-Alt-h"},
36 exec: function(editor) {
37 ace.config.loadModule("ace/ext/keybinding_menu", function(module) {
38 module.init(editor);
39 editor.showKeyboardShortcuts()
40 })
41 }
42 })
43 editor.execCommand("showKeyboardShortcuts")
44 </script>
45  
46 <script src="./show_own_source.js"></script>
47 </body>
48 </html>