diff options
author | Ananya Sen | 2012-07-17 14:25:53 -0700 |
---|---|---|
committer | Ananya Sen | 2012-07-17 14:25:53 -0700 |
commit | 09457e39532e9b35afb9c635266755bfcb9b488a (patch) | |
tree | 665dcbd41377b98dcab15ff995e9434d9db1a462 /imports/codemirror/lib/util/overlay.js | |
parent | f2dbca782bbaca3bed96dff808693693ba083ea9 (diff) | |
parent | 4f737b24c19ddc02d20f9783b8b080fc6ef11142 (diff) | |
download | ninja-09457e39532e9b35afb9c635266755bfcb9b488a.tar.gz |
Merge branch 'refs/heads/ninja-internal-master' into copy-paste-bugfix
Diffstat (limited to 'imports/codemirror/lib/util/overlay.js')
-rw-r--r-- | imports/codemirror/lib/util/overlay.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/imports/codemirror/lib/util/overlay.js b/imports/codemirror/lib/util/overlay.js index c4cdf9fc..1d5df6c6 100644 --- a/imports/codemirror/lib/util/overlay.js +++ b/imports/codemirror/lib/util/overlay.js | |||
@@ -6,7 +6,8 @@ | |||
6 | // overlay wins, unless the combine argument was true, in which case | 6 | // overlay wins, unless the combine argument was true, in which case |
7 | // the styles are combined. | 7 | // the styles are combined. |
8 | 8 | ||
9 | CodeMirror.overlayParser = function(base, overlay, combine) { | 9 | // overlayParser is the old, deprecated name |
10 | CodeMirror.overlayMode = CodeMirror.overlayParser = function(base, overlay, combine) { | ||
10 | return { | 11 | return { |
11 | startState: function() { | 12 | startState: function() { |
12 | return { | 13 | return { |
@@ -43,7 +44,7 @@ CodeMirror.overlayParser = function(base, overlay, combine) { | |||
43 | else return state.overlayCur; | 44 | else return state.overlayCur; |
44 | }, | 45 | }, |
45 | 46 | ||
46 | indent: function(state, textAfter) { | 47 | indent: base.indent && function(state, textAfter) { |
47 | return base.indent(state.base, textAfter); | 48 | return base.indent(state.base, textAfter); |
48 | }, | 49 | }, |
49 | electricChars: base.electricChars | 50 | electricChars: base.electricChars |