revert: feat: add a flag in bootstrap to enable coalesce event change detection to improve performance (#30533) (#33230)

This reverts commit 21c1e14385.

PR Close #33230
This commit is contained in:
Matias Niemelä
2019-10-17 08:48:37 -07:00
parent d192a7b47a
commit 082aed6e46
11 changed files with 21 additions and 171 deletions

View File

@ -14,23 +14,6 @@ var __global = "undefined" !== typeof global && global;
var _global = __globalThis || __global || __window || __self;
function getNativeRequestAnimationFrame() {
var nativeRequestAnimationFrame = _global["requestAnimationFrame"];
var nativeCancelAnimationFrame = _global["cancelAnimationFrame"];
if ("undefined" !== typeof Zone && nativeRequestAnimationFrame && nativeCancelAnimationFrame) {
var unpatchedRequestAnimationFrame = nativeRequestAnimationFrame[Zone.__symbol__("OriginalDelegate")];
if (unpatchedRequestAnimationFrame) nativeRequestAnimationFrame = unpatchedRequestAnimationFrame;
var unpatchedCancelAnimationFrame = nativeCancelAnimationFrame[Zone.__symbol__("OriginalDelegate")];
if (unpatchedCancelAnimationFrame) nativeCancelAnimationFrame = unpatchedCancelAnimationFrame;
}
return {
nativeRequestAnimationFrame: nativeRequestAnimationFrame,
nativeCancelAnimationFrame: nativeCancelAnimationFrame
};
}
var nativeRequestAnimationFrame = getNativeRequestAnimationFrame().nativeRequestAnimationFrame;
if (ngDevMode) _global.$localize = _global.$localize || function() {
throw new Error("It looks like your application or one of its dependencies is using i18n.\n" + "Angular 9 introduced a global `$localize()` function that needs to be loaded.\n" + "Please add `import '@angular/localize/init';` to your polyfills.ts file.");
};