
committed by
Alex Rickabaugh

parent
f455518d80
commit
9993c72335
@ -151,7 +151,7 @@ export class InertBodyHelper {
|
||||
el.removeAttribute(attrName);
|
||||
}
|
||||
}
|
||||
let childNode = el.firstChild;
|
||||
let childNode = el.firstChild as Node | null;
|
||||
while (childNode) {
|
||||
if (childNode.nodeType === Node.ELEMENT_NODE) this.stripCustomNsAttrs(childNode as Element);
|
||||
childNode = childNode.nextSibling;
|
||||
|
@ -116,10 +116,12 @@ function ngBackPatch_node_modules_libB_module_LibAModule() {
|
||||
|
||||
export const AppModuleFactory: NgModuleFactory<AppModule>&{patchedDeps: boolean} = {
|
||||
moduleType: AppModule,
|
||||
patchedDeps: false,
|
||||
create(parentInjector: Injector | null): NgModuleRef<AppModule>{
|
||||
this.patchedDeps && ngBackPatch_node_modules_libB_module() && (this.patchedDeps = true);
|
||||
return details_elided;}
|
||||
patchedDeps: false, create(parentInjector: Injector | null): NgModuleRef<AppModule>{
|
||||
if (!this.patchedDeps) {
|
||||
ngBackPatch_node_modules_libB_module();
|
||||
this.patchedDeps = true;
|
||||
} return details_elided;
|
||||
}
|
||||
};
|
||||
// BEGIN FILE: src/app.ngfactory.ts
|
||||
|
||||
|
Reference in New Issue
Block a user