diff options
author | Valerio Virgillito | 2012-07-17 11:29:09 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-07-17 11:29:09 -0700 |
commit | 58e86247524cc2d545bd6884f1b5c9fdba3b9164 (patch) | |
tree | 53305d354fce502ee39378babf47ace6c91ce2fd /imports/codemirror/lib/util/overlay.js | |
parent | 0f0cffd4df85e7adf5081fe66c768c70b2ead9b3 (diff) | |
parent | 4f737b24c19ddc02d20f9783b8b080fc6ef11142 (diff) | |
download | ninja-58e86247524cc2d545bd6884f1b5c9fdba3b9164.tar.gz |
Merge branch 'refs/heads/master' into v0.7.1
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 |