本文整理汇总了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;
}
开发者ID:bromzh,项目名称:angular2-webpack-starter,代码行数:16,代码来源:environment.ts
示例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
];
}
开发者ID:ctkdev,项目名称:spring-angular2-starter,代码行数:30,代码来源:environment.ts
示例3: disableDebugTools
_decorateModuleRef = (modRef: any) => {
disableDebugTools();
return modRef;
};
开发者ID:emilkpetkov,项目名称:ngx-charts,代码行数:4,代码来源:libs.ts
示例4: disableDebugTools
.then(m => {
if (isProd) {
disableDebugTools();
}
});
开发者ID:rmannibucau,项目名称:rblog,代码行数:5,代码来源:main.ts
示例5:
.then(appRef => {
moduleRef = appRef;
if (IS_PRODUCTION) disableDebugTools();
console.log('ReDoc initialized!');
}).catch(err => {
开发者ID:jwilander,项目名称:ReDoc,代码行数:5,代码来源:index.ts
注:本文中的@angular/platform-browser.disableDebugTools函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论