Skip to content

Commit

Permalink
Semicolon fix
Browse files Browse the repository at this point in the history
  • Loading branch information
paveljanda committed Mar 7, 2016
1 parent 5ed8959 commit 78d904a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/coffee/happy.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -149,11 +149,11 @@ class Happy

if ie
event = document.createEvent('Event')
event.initEvent('change', true, true);
event.initEvent('change', true, true)
else
event = new Event('change', {'bubbles': true})

input.dispatchEvent(event);
input.dispatchEvent(event)

checkCheckboxStateOnChange: (e) =>
if e.target.classList.contains('happy')
Expand Down

0 comments on commit 78d904a

Please sign in to comment.