Mercurial > hg > ugly-duckling
view src/main.ts @ 431:686cf74aa0a2
Allow clicking whole list item to extract. Kinda makes the plus button redundant. Add guard in extract method.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Wed, 07 Jun 2017 08:46:30 +0100 |
parents | 53ea6406d601 |
children |
line wrap: on
line source
import 'polyfills'; import { enableProdMode } from '@angular/core'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { AppModule } from './app/app.module'; import { environment } from './environments/environment'; if (environment.production) { enableProdMode(); } platformBrowserDynamic().bootstrapModule(AppModule);