Skip to content
This repository has been archived by the owner on Jun 18, 2024. It is now read-only.

Commit

Permalink
fixed linting issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
williamado committed Jun 21, 2016
1 parent cdf600b commit 1c12a0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DatePicker/Jquery.DatePicker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ namespace fabric {

/** dispatch click on document so anything listening can be notified */
$picker.on("open", function(e) {
let evt = document.createEvent('MouseEvents');
let evt = document.createEvent("MouseEvents");
evt.initEvent("click", true, true);
document.dispatchEvent(evt);
});
Expand Down

0 comments on commit 1c12a0c

Please sign in to comment.