Mercurial > hg > ugly-duckling
view src/main.ts @ 462:2624bb55dbf6
Fix ordering of adding to history (after an action). Add functions for stepping through the history.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Fri, 30 Jun 2017 13:59:21 +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);