aboutsummaryrefslogtreecommitdiff
path: root/imports/codemirror/mode/htmlmixed/htmlmixed.js
diff options
context:
space:
mode:
authorNivesh Rajbhandari2012-05-03 17:09:07 -0700
committerNivesh Rajbhandari2012-05-03 17:09:07 -0700
commit8be6e94b57f4bd6e28754a6113b4d6a401365e13 (patch)
tree19f48f969ab872b9ef46cc4e7d6c2b9d2544cd4d /imports/codemirror/mode/htmlmixed/htmlmixed.js
parentc14b8d9fd1acde98ffc427b0bbdba7d1442c39a4 (diff)
parentfec9ccee11ea21ffc95edce6e89d0d302b63e3d8 (diff)
downloadninja-8be6e94b57f4bd6e28754a6113b4d6a401365e13.tar.gz
Merge branch 'refs/heads/ninja-internal' into WebGLFixes
Diffstat (limited to 'imports/codemirror/mode/htmlmixed/htmlmixed.js')
-rw-r--r--imports/codemirror/mode/htmlmixed/htmlmixed.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/imports/codemirror/mode/htmlmixed/htmlmixed.js b/imports/codemirror/mode/htmlmixed/htmlmixed.js
index a94dc45f..c66a6583 100644
--- a/imports/codemirror/mode/htmlmixed/htmlmixed.js
+++ b/imports/codemirror/mode/htmlmixed/htmlmixed.js
@@ -28,7 +28,7 @@ CodeMirror.defineMode("htmlmixed", function(config, parserConfig) {
28 function javascript(stream, state) { 28 function javascript(stream, state) {
29 if (stream.match(/^<\/\s*script\s*>/i, false)) { 29 if (stream.match(/^<\/\s*script\s*>/i, false)) {
30 state.token = html; 30 state.token = html;
31 state.curState = null; 31 state.localState = null;
32 state.mode = "html"; 32 state.mode = "html";
33 return html(stream, state); 33 return html(stream, state);
34 } 34 }