aboutsummaryrefslogtreecommitdiff
path: root/imports/codemirror/lib/util/foldcode.js
diff options
context:
space:
mode:
authorJose Antonio Marquez2012-05-04 14:00:54 -0700
committerJose Antonio Marquez2012-05-04 14:00:54 -0700
commit9c0bda09a502472768f6dd5090a882d11be58d23 (patch)
tree28eb75165553daa979be3bc9223d35d875a008dc /imports/codemirror/lib/util/foldcode.js
parent2456f0d60f642016135aa0f96126cb3249343757 (diff)
parentfec9ccee11ea21ffc95edce6e89d0d302b63e3d8 (diff)
downloadninja-9c0bda09a502472768f6dd5090a882d11be58d23.tar.gz
Merge branch 'refs/heads/Ninja-Internal' into Document
Diffstat (limited to 'imports/codemirror/lib/util/foldcode.js')
-rw-r--r--imports/codemirror/lib/util/foldcode.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/imports/codemirror/lib/util/foldcode.js b/imports/codemirror/lib/util/foldcode.js
index 50268a8b..b700d860 100644
--- a/imports/codemirror/lib/util/foldcode.js
+++ b/imports/codemirror/lib/util/foldcode.js
@@ -80,7 +80,7 @@ CodeMirror.tagRangeFinder = function(cm, line) {
80 } 80 }
81 81
82 if (found) { 82 if (found) {
83 var startTag = "(\\<\\/" + tag + "\\>)|(\\<" + tag + "\\>)|(\\<" + tag + "\s)|(\\<" + tag + "$)"; 83 var startTag = "(\\<\\/" + tag + "\\>)|(\\<" + tag + "\\>)|(\\<" + tag + "\\s)|(\\<" + tag + "$)";
84 var startTagRegExp = new RegExp(startTag, "g"); 84 var startTagRegExp = new RegExp(startTag, "g");
85 var endTag = "</" + tag + ">"; 85 var endTag = "</" + tag + ">";
86 var depth = 1; 86 var depth = 1;