Update ACE to 1.4.12-src-min-noconflict

Fixes #1988
This commit is contained in:
Nick O'Leary
2020-09-16 19:13:40 +01:00
parent 9d5f5ee94b
commit aaf134b1c5
29 changed files with 34 additions and 32 deletions

View File

@@ -79,7 +79,7 @@ oop.inherits(NRJavaScriptWorker, Mirror);
this.options = options || {
// undef: true,
// unused: true,
esnext: true,
esversion: 9,
moz: true,
devel: true,
browser: true,
@@ -92,7 +92,10 @@ oop.inherits(NRJavaScriptWorker, Mirror);
maxerr: 100,
expr: true,
multistr: true,
globalstrict: true
globalstrict: true,
sub: true,
asi: true
};
this.doc.getValue() && this.deferredUpdate.schedule(100);
};