Update CodeMirror to 5.13.5
This commit is contained in:
2
public/vendor/codemirror/mode/xml/xml.js
vendored
2
public/vendor/codemirror/mode/xml/xml.js
vendored
@@ -237,7 +237,7 @@ CodeMirror.defineMode("xml", function(editorConf, config_) {
|
||||
if (state.context && state.context.tagName != tagName &&
|
||||
config.implicitlyClosed.hasOwnProperty(state.context.tagName))
|
||||
popContext(state);
|
||||
if (state.context && state.context.tagName == tagName) {
|
||||
if ((state.context && state.context.tagName == tagName) || config.matchClosing === false) {
|
||||
setStyle = "tag";
|
||||
return closeState;
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user