Fix CoffeeLint rule 'Line contains a trailing semicolon' across multiple files

This commit is contained in:
Bertocq
2017-06-16 00:01:05 +02:00
parent 95f640d3c5
commit 6eb2647c1c
8 changed files with 15 additions and 15 deletions

View File

@@ -3,11 +3,11 @@ App.Votes =
hoverize: (votes) ->
$(document).on {
'mouseenter focus': ->
$("div.participation-not-allowed", this).show();
$("div.participation-allowed", this).hide();
$("div.participation-not-allowed", this).show()
$("div.participation-allowed", this).hide()
mouseleave: ->
$("div.participation-not-allowed", this).hide();
$("div.participation-allowed", this).show();
$("div.participation-not-allowed", this).hide()
$("div.participation-allowed", this).show()
}, votes
initialize: ->