diff options
author | Armen Kesablyan | 2012-05-08 16:43:43 -0700 |
---|---|---|
committer | Armen Kesablyan | 2012-05-08 16:43:43 -0700 |
commit | dc075ffcc6dd03c090d90fad999eee9b924d56ee (patch) | |
tree | 867f8bdd588c8f9076979233ca46a688ff70523e /imports/codemirror/mode/vbscript/index.html | |
parent | 5d7e470351fd150d5e70a97332fa2f2553797499 (diff) | |
parent | 4d949f141247215b5f2a6ec0cfc7d2d31cf2bb1f (diff) | |
download | ninja-dc075ffcc6dd03c090d90fad999eee9b924d56ee.tar.gz |
Merge branch 'refs/heads/dom-architecture' into binding
Conflicts:
js/components/layout/tools-properties.reel/tools-properties.html
Signed-off-by: Armen Kesablyan <armen@motorola.com>
Diffstat (limited to 'imports/codemirror/mode/vbscript/index.html')
-rw-r--r-- | imports/codemirror/mode/vbscript/index.html | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/imports/codemirror/mode/vbscript/index.html b/imports/codemirror/mode/vbscript/index.html new file mode 100644 index 00000000..dd207cae --- /dev/null +++ b/imports/codemirror/mode/vbscript/index.html | |||
@@ -0,0 +1,42 @@ | |||
1 | <!doctype html> | ||
2 | <html> | ||
3 | <head> | ||
4 | <title>CodeMirror: VBScript mode</title> | ||
5 | <link rel="stylesheet" href="../../lib/codemirror.css"> | ||
6 | <script src="../../lib/codemirror.js"></script> | ||
7 | <script src="vbscript.js"></script> | ||
8 | <link rel="stylesheet" href="../../doc/docs.css"> | ||
9 | <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style> | ||
10 | </head> | ||
11 | <body> | ||
12 | <h1>CodeMirror: VBScript mode</h1> | ||
13 | |||
14 | <div><textarea id="code" name="code"> | ||
15 | ' Pete Guhl | ||
16 | ' 03-04-2012 | ||
17 | ' | ||
18 | ' Basic VBScript support for codemirror2 | ||
19 | |||
20 | Const ForReading = 1, ForWriting = 2, ForAppending = 8 | ||
21 | |||
22 | Call Sub020_PostBroadcastToUrbanAirship(strUserName, strPassword, intTransmitID, strResponse) | ||
23 | |||
24 | If Not IsNull(strResponse) AND Len(strResponse) = 0 Then | ||
25 | boolTransmitOkYN = False | ||
26 | Else | ||
27 | ' WScript.Echo "Oh Happy Day! Oh Happy DAY!" | ||
28 | boolTransmitOkYN = True | ||
29 | End If | ||
30 | </textarea></div> | ||
31 | |||
32 | <script> | ||
33 | var editor = CodeMirror.fromTextArea(document.getElementById("code"), { | ||
34 | lineNumbers: true, | ||
35 | matchBrackets: true | ||
36 | }); | ||
37 | </script> | ||
38 | |||
39 | <p><strong>MIME types defined:</strong> <code>text/vbscript</code>.</p> | ||
40 | </body> | ||
41 | </html> | ||
42 | |||