Skip to content

Commit

Permalink
fix(DlDateTimePickerComponent): event reference should have been $event
Browse files Browse the repository at this point in the history
This  resulted in a referenceError in DlDateTimePickerComponent._handleKeyDown method.
Merge pull request #426 from steven-hadfield/master
  • Loading branch information
dalelotts committed Apr 4, 2018
2 parents cd3ce22 + f23cb65 commit 22dd5c7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ export class DlDateTimePickerComponent<D> implements OnChanges, OnInit, ControlV

this.focusActiveCell();
// Prevent unexpected default actions such as form submission.
event.preventDefault();
$event.preventDefault();
}
}

Expand Down

0 comments on commit 22dd5c7

Please sign in to comment.