diff options
author | Ananya Sen | 2012-04-04 12:27:35 -0700 |
---|---|---|
committer | Ananya Sen | 2012-04-04 12:27:35 -0700 |
commit | 671d2b94996ac71d56b2d05d5fe694ed7d84fa59 (patch) | |
tree | 8a6b6437567b9e359717fac73891605d60748823 /imports/codemirror/mode/vbscript/index.html | |
parent | e5dc1a5f35c2c6f3273e89109f1be445471b2dec (diff) | |
download | ninja-671d2b94996ac71d56b2d05d5fe694ed7d84fa59.tar.gz |
upgrading to CodeMirror 2.23, since it has an important fix to Not close Ninja, if backspace is pressed while autocomplete dropdown is open.
Signed-off-by: Ananya Sen <Ananya.Sen@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 | |||