Remove trailing semicolons in CoffeeScript files

This commit is contained in:
Javi Martín
2019-03-04 13:43:12 +01:00
parent d963657e41
commit af9dce1dcf
10 changed files with 42 additions and 42 deletions

View File

@@ -5,8 +5,8 @@ App.PollsAdmin =
change: ->
switch ($(this).val())
when 'vote_collection'
$("select[class='js-shift-vote-collection-dates']").show();
$("select[class='js-shift-recount-scrutiny-dates']").hide();
$("select[class='js-shift-vote-collection-dates']").show()
$("select[class='js-shift-recount-scrutiny-dates']").hide()
when 'recount_scrutiny'
$("select[class='js-shift-recount-scrutiny-dates']").show();
$("select[class='js-shift-vote-collection-dates']").hide();
$("select[class='js-shift-recount-scrutiny-dates']").show()
$("select[class='js-shift-vote-collection-dates']").hide()