X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fenvironment.ts;h=dd327a62e4639886955ba80c5505a415503a6cad;hb=c9d6d155c397d0da0cb2d50064264fc1716f0501;hp=929e09490c763509888426f9302eacd3819c8778;hpb=c16ce1de8e8c21ad2136335d3b0b7d230e6d2f24;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/environment.ts b/client/src/app/environment.ts index 929e09490..dd327a62e 100644 --- a/client/src/app/environment.ts +++ b/client/src/app/environment.ts @@ -1,21 +1,37 @@ +/* tslint:disable */ -// Angular 2 -// rc2 workaround -import { enableDebugTools, disableDebugTools } from '@angular/platform-browser'; -import { enableProdMode, ApplicationRef } from '@angular/core'; -// Environment Providers +/** + * Angular 2 + */ +import { + enableDebugTools, + disableDebugTools +} from '@angular/platform-browser'; +import { + ApplicationRef, + enableProdMode +} from '@angular/core'; +/** + * Environment Providers + */ let PROVIDERS: any[] = [ - // common env directives + /** + * Common env directives + */ ]; -// Angular debug tools in the dev console -// https://github.com/angular/angular/blob/86405345b781a9dc2438c0fbe3e9409245647019/TOOLS_JS.md -let _decorateModuleRef = function identity(value: T): T { return value; }; +/** + * Angular debug tools in the dev console + * https://github.com/angular/angular/blob/86405345b781a9dc2438c0fbe3e9409245647019/TOOLS_JS.md + */ +let _decorateModuleRef = (value: T): T => { return value; }; if ('production' === ENV) { enableProdMode(); - // Production + /** + * Production + */ _decorateModuleRef = (modRef: any) => { disableDebugTools(); @@ -24,7 +40,9 @@ if ('production' === ENV) { PROVIDERS = [ ...PROVIDERS, - // custom providers in production + /** + * Custom providers in production. + */ ]; } else { @@ -33,17 +51,21 @@ if ('production' === ENV) { const appRef = modRef.injector.get(ApplicationRef); const cmpRef = appRef.components[0]; - let _ng = (window).ng; + let _ng = ( window).ng; enableDebugTools(cmpRef); - (window).ng.probe = _ng.probe; - (window).ng.coreTokens = _ng.coreTokens; + ( window).ng.probe = _ng.probe; + ( window).ng.coreTokens = _ng.coreTokens; return modRef; }; - // Development + /** + * Development + */ PROVIDERS = [ ...PROVIDERS, - // custom providers in development + /** + * Custom providers in development. + */ ]; }