Skip to content

Commit

Permalink
fix linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
cherifGsoul committed Oct 19, 2018
1 parent a4e2cd1 commit 9675002
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion can-dom-events-test.js
Expand Up @@ -53,7 +53,7 @@ unit.test('domEvents.removeEventListener works', function (assert) {
domEvents.removeEventListener(input, eventType, handler);

if (typeof Event === "function") {
var event2 = new Event(eventType);
event2 = new Event(eventType);
} else {
event2 = document.createEvent('Event');
event2.initEvent(eventType, true, true);
Expand Down

0 comments on commit 9675002

Please sign in to comment.