fix(datetime): clear out existing datetime data

Closes #6614
This commit is contained in:
Adam Bradley
2016-06-01 08:56:04 -05:00
parent f7b1f373d3
commit c1ad804be8
4 changed files with 28 additions and 2 deletions

View File

@ -27,14 +27,18 @@ class E2EPage {
'l\u00f8r'
];
onChange(ev) {
onChange(ev: any) {
console.log("Changed", ev);
}
onCancel(ev) {
onCancel(ev: any) {
console.log("Canceled", ev);
}
clearLeapYear() {
this.leapYearsSummerMonths = null;
}
}