(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| import { DateAdapter, MdDateFormats } from '@angular/material'; | |
| import * as moment from 'moment'; | |
| // MomentJS | |
| // http://momentjs.com/docs/ | |
| const MONTHS = { | |
| 'long': ['Januar', 'Februar', 'März', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember'], | |
| 'short': ['Jan', 'Feb', 'Mär', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'], | |
| 'narrow': ['Ja', 'Fe', 'Mä', 'Jn', 'Jl', 'Au', 'Se', 'Ok', 'No', 'De'] |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Angular 2 App</title> | |
| <base href="/"> {{content-for 'head'}} | |
| <link rel="icon" type="image/x-icon" href="favicon.ico"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> |