Mercurial > hg > ugly-duckling
annotate src/main.ts @ 196:aa1c92c553cb
A few different @Input flags allowing for using component for just a waveform or features or both, turning off seeking and allowing more than one feature to be extracted to the component. Very messy, desperately needs refactoring.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Fri, 24 Mar 2017 11:00:54 +0000 |
parents | 340ce94899fd |
children | 53ea6406d601 |
rev | line source |
---|---|
angular-cli@0 | 1 import './polyfills.ts'; |
angular-cli@0 | 2 |
angular-cli@0 | 3 import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; |
angular-cli@0 | 4 import { enableProdMode } from '@angular/core'; |
angular-cli@0 | 5 import { environment } from './environments/environment'; |
angular-cli@0 | 6 import { AppModule } from './app/'; |
angular-cli@0 | 7 |
angular-cli@0 | 8 if (environment.production) { |
angular-cli@0 | 9 enableProdMode(); |
angular-cli@0 | 10 } |
angular-cli@0 | 11 |
angular-cli@0 | 12 platformBrowserDynamic().bootstrapModule(AppModule); |