Skip to content

Commit

Permalink
fix(datepicker): dates are Dates
Browse files Browse the repository at this point in the history
  • Loading branch information
tlancina committed Mar 6, 2016
1 parent c3cfd14 commit ce6adcc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/plugins/datepicker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ export class DatePicker {
@Cordova()
static show(options?: {
mode?: string,
date?: string,
minDate?: string,
maxDate?: string,
date?: Date,
minDate?: Date,
maxDate?: Date,
titleText?: string,
okText?: string,
cancelText?: string,
Expand All @@ -48,8 +48,8 @@ export class DatePicker {
doneButtonColor?: string,
cancelButtonLabel?: string,
cancelButtonColor?: string,
x?: string,
y?: string,
x?: number,
y?: number,
minuteInterval?: number,
popoverArrowDirection?: string,
locale?: string
Expand Down

0 comments on commit ce6adcc

Please sign in to comment.