當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript platform-browser.disableDebugTools函數代碼示例

本文整理匯總了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;未經允許,請勿轉載。