fix(ivy): use `window.ng` instead of `window.ngDev` for debug tooling (#26951)
PR Close #26951
This commit is contained in:
parent
3ca1a57f81
commit
931a363612
|
@ -228,7 +228,8 @@ export {
|
|||
} from './render/api';
|
||||
|
||||
export {
|
||||
publishGlobalUtil as ɵpublishGlobalUtil
|
||||
publishGlobalUtil as ɵpublishGlobalUtil,
|
||||
publishDefaultGlobalUtils as ɵpublishDefaultGlobalUtils
|
||||
} from './render3/publish_global_util';
|
||||
export {
|
||||
SWITCH_INJECTOR_FACTORY__POST_R3__ as ɵSWITCH_INJECTOR_FACTORY__POST_R3__,
|
||||
|
|
|
@ -22,9 +22,9 @@ import {getComponent, getDirectives, getHostComponent, getInjector, getRootCompo
|
|||
|
||||
/**
|
||||
* This value reflects the property on the window where the dev
|
||||
* tools are patched (window.ngDev).
|
||||
* tools are patched (window.ng).
|
||||
* */
|
||||
export const GLOBAL_PUBLISH_EXPANDO_KEY = 'ngDev';
|
||||
export const GLOBAL_PUBLISH_EXPANDO_KEY = 'ng';
|
||||
|
||||
/*
|
||||
* Publishes a collection of default debug tools onto `window._ng_`.
|
||||
|
|
Loading…
Reference in New Issue