本文整理汇总了TypeScript中@angular/platform-browser.disableDebugTools函数的典型用法代码示例。如果您正苦于以下问题:TypeScript disableDebugTools函数的具体用法?TypeScript disableDebugTools怎么用?TypeScript disableDebugTools使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了disableDebugTools函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: disableDebugTools
export function enableEnvironmentTools<T>(rootComponentRef: ComponentRef<T>): ComponentRef<T> {
if ('production' === ENV) {
disableDebugTools();
enableProdMode();
return rootComponentRef;
}
let ng: NgDebugger = window.ng;
let componentRef = enableDebugTools(rootComponentRef);
window.ng.probe = ng.probe;
window.ng.coreTokens = ng.coreTokens;
return componentRef;
}
示例2: identity
// Angular 2
import {enableProdMode} from '@angular/core';
import {disableDebugTools, enableDebugTools} from '@angular/platform-browser';
// Environment Providers
var PROVIDERS = [];
// Angular debug tools in the dev console
// https://github.com/angular/angular/blob/86405345b781a9dc2438c0fbe3e9409245647019/TOOLS_JS.md
let _decorateComponentRef = function identity(value) { return value; };
if ('production' === ENV) {
// Production
disableDebugTools();
enableProdMode();
PROVIDERS = [
...PROVIDERS
];
} else {
_decorateComponentRef = (cmpRef) => enableDebugTools(cmpRef);
// Development
PROVIDERS = [
...PROVIDERS
];
}
示例3: disableDebugTools
_decorateModuleRef = (modRef: any) => {
disableDebugTools();
return modRef;
};
示例4: disableDebugTools
.then(m => {
if (isProd) {
disableDebugTools();
}
});
示例5:
.then(appRef => {
moduleRef = appRef;
if (IS_PRODUCTION) disableDebugTools();
console.log('ReDoc initialized!');
}).catch(err => {