本文整理匯總了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 => {