Skip to content

Commit fa27e0b

Browse files
committed
bug fixes
1 parent 31c71e6 commit fa27e0b

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

docs/inline.bundle.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/main.bundle.js

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/main.bundle.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/app/angular2-datetimepicker/datepicker.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,8 +275,8 @@ export class DatePicker implements OnInit, ControlValueAccessor {
275275
276276
}*/
277277
else {
278-
// this.date = new Date(selectedDay);
279-
// this.onChangeCallback(this.date.toString());
278+
this.date = new Date(selectedDay);
279+
this.onChangeCallback(this.date.toString());
280280

281281
}
282282
if (this.settings.closeOnSelect) {

src/app/examples/rangepicker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ export class DateRangePickerExample implements OnInit {
2222
ngOnInit() {
2323

2424
}
25-
title: string = "Basic Example";
25+
title: string = "Range picker Example";
2626
}

src/app/examples/usingWithForms.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { Component, OnInit, AfterViewInit } from '@angular/core';
44
templateUrl: './views/usingwithforms.html'
55
})
66
export class UsingWithFormExample implements OnInit {
7+
title: string = "Using with angular forms";
78
formModel = {
89
name: '',
910
dob: new Date(),

0 commit comments

Comments
 (0)