Language facet broke again
This commit is contained in:
parent
1195842724
commit
e6851b391e
@ -60,6 +60,8 @@ if (localStorage.getItem("disable_sw") !== "true") {
|
|||||||
"No launching service worker (not present, maybe because not running on localhost or over SSL)"
|
"No launching service worker (not present, maybe because not running on localhost or over SSL)"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
console.log("Service worker disabled via disable_sw");
|
||||||
}
|
}
|
||||||
|
|
||||||
// }
|
// }
|
||||||
|
@ -76,8 +76,6 @@ const saveInterval = 1000;
|
|||||||
// Monkey patching the languageDataAt, somehow the languageData facet is not set
|
// Monkey patching the languageDataAt, somehow the languageData facet is not set
|
||||||
// properly, no idea why
|
// properly, no idea why
|
||||||
|
|
||||||
let _languageFacetsCache: any;
|
|
||||||
|
|
||||||
// TODO: Remove at some point
|
// TODO: Remove at some point
|
||||||
EditorState.prototype.languageDataAt = function (
|
EditorState.prototype.languageDataAt = function (
|
||||||
name: string,
|
name: string,
|
||||||
@ -91,11 +89,7 @@ EditorState.prototype.languageDataAt = function (
|
|||||||
let providerResult = provider(this, pos, side);
|
let providerResult = provider(this, pos, side);
|
||||||
if (!providerResult) {
|
if (!providerResult) {
|
||||||
// console.log("Empty provider result");
|
// console.log("Empty provider result");
|
||||||
providerResult = _languageFacetsCache;
|
continue;
|
||||||
// continue;
|
|
||||||
} else {
|
|
||||||
// console.log("Provider result", providerResult);
|
|
||||||
_languageFacetsCache = providerResult.slice();
|
|
||||||
}
|
}
|
||||||
for (let result of providerResult) {
|
for (let result of providerResult) {
|
||||||
if (Object.prototype.hasOwnProperty.call(result, name))
|
if (Object.prototype.hasOwnProperty.call(result, name))
|
||||||
|
Loading…
Reference in New Issue
Block a user