Skip to content

Commit

Permalink
Merge pull request #341 from Irmiz/typos
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
gpbl committed May 11, 2017
2 parents 49eda9c + 82c451c commit 0fc4f1d
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions docs/DayPickerAPI.md
Expand Up @@ -324,65 +324,65 @@ An array containing the short weekdays names to use in the month's header. Must

### onCaptionClick

**Type**: `(currentMonth: Date, e: SyntethicEvent) ⇒ void`
**Type**: `(currentMonth: Date, e: SyntheticEvent) ⇒ void`

Event handler when the user clicks on the caption in the header displaying the month.

---

### onDayClick

**Type**: `(day: Date, modifiers: Object, e: SyntethicEvent) ⇒ void`
**Type**: `(day: Date, modifiers: Object, e: SyntheticEvent) ⇒ void`

Event handler when the user clicks on a day cell.

---

### onBlur

**Type**: `(e: SyntethicEvent) ⇒ void`
**Type**: `(e: SyntheticEvent) ⇒ void`

Event handler when the calendar get the `blur` event.

### onDayKeyDown

**Type**: `(day: Date, modifiers: Object, e: SyntethicEvent) ⇒ void`
**Type**: `(day: Date, modifiers: Object, e: SyntheticEvent) ⇒ void`

Event handler when the day cell gets the `keydown` event.

### onDayMouseEnter

**Type**: `(day: Date, modifiers: Object, e: SyntethicEvent) ⇒ void`
**Type**: `(day: Date, modifiers: Object, e: SyntheticEvent) ⇒ void`

Event handler when the mouse enters a day cell.

### onDayMouseLeave

**Type**: `(day: Date, modifiers: Object, e: SyntethicEvent) ⇒ void`
**Type**: `(day: Date, modifiers: Object, e: SyntheticEvent) ⇒ void`

Event handler when the mouse leave a day cell.

### onDayTouchStart

**Type**: `(day: Date, modifiers: Object, e: SyntethicEvent) ⇒ void`
**Type**: `(day: Date, modifiers: Object, e: SyntheticEvent) ⇒ void`

Event handler when the day cell gets the `touchStart` event.

### onDayTouchEnd

**Type**: `(day: Date, modifiers: Object, e: SyntethicEvent) ⇒ void`
**Type**: `(day: Date, modifiers: Object, e: SyntheticEvent) ⇒ void`

Event handler when the day cell gets the `touchEnd` event.

### onFocus

**Type**: `(e: SyntethicEvent) ⇒ void`
**Type**: `(e: SyntheticEvent) ⇒ void`

Event handler when the calendar get the `focus` event

### onKeyDown

**Type**: `(e: SyntethicEvent) ⇒ void`
**Type**: `(e: SyntheticEvent) ⇒ void`

Event handler when the calendar get the `keydown` event

Expand All @@ -394,7 +394,7 @@ Event handler when the month is changed, i.e. clicking the navigation buttons or

### onWeekClick

**Type**: `(weekNumber: Number, days: Date[], e: SynteticEvent) ⇒ void`
**Type**: `(weekNumber: Number, days: Date[], e: SyntheticEvent) ⇒ void`

Event hander when the user clicks on a week number (when [showWeekNumbers](#showweeknumbers) is set to `true`).

Expand Down

0 comments on commit 0fc4f1d

Please sign in to comment.