Bug 1475659 - Update Codemirror to 5.39.0. r=bgrins

This commit is contained in:
Gabriel Luong 2018-07-13 18:11:01 -04:00
Родитель 041ceee442
Коммит 5075420858
5 изменённых файлов: 6 добавлений и 7 удалений

Просмотреть файл

@ -5,7 +5,7 @@ code, and optionally help with indentation.
# Upgrade
Currently used version is 5.38.0. To upgrade: download a new version of
Currently used version is 5.39.0. To upgrade: download a new version of
CodeMirror from the project's page [1] and replace all JavaScript and
CSS files inside the codemirror directory [2].

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -6577,8 +6577,6 @@ function registerGlobalHandlers() {
// Called when the window resizes
function onResize(cm) {
var d = cm.display
if (d.lastWrapHeight == d.wrapper.clientHeight && d.lastWrapWidth == d.wrapper.clientWidth)
{ return }
// Might be a text scaling operation, clear size caches.
d.cachedCharWidth = d.cachedTextHeight = d.cachedPaddingH = null
d.scrollbarsClipped = false
@ -9678,7 +9676,7 @@ CodeMirror.fromTextArea = fromTextArea
addLegacyProps(CodeMirror)
CodeMirror.version = "5.38.0"
CodeMirror.version = "5.39.0"
return CodeMirror;

Просмотреть файл

@ -344,7 +344,7 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) {
function expect(wanted) {
function exp(type) {
if (type == wanted) return cont();
else if (wanted == ";") return pass();
else if (wanted == ";" || type == "}" || type == ")" || type == "]") return pass();
else return cont(exp);
};
return exp;

Просмотреть файл

@ -163,8 +163,9 @@ CodeMirror.defineMode("xml", function(editorConf, config_) {
stream.next();
}
return style;
};
}
}
function doctype(depth) {
return function(stream, state) {
var ch;