Strict mode is supported by 98% of the browsers, including Internet Explorer 10, and it helps developers avoid common JavaScript pitfalls.
16 lines
511 B
CoffeeScript
16 lines
511 B
CoffeeScript
"use strict"
|
|
|
|
App.PollsAdmin =
|
|
|
|
initialize: ->
|
|
$("select[class='js-poll-shifts']").on
|
|
change: ->
|
|
switch ($(this).val())
|
|
when "vote_collection"
|
|
$("select[class='js-shift-vote-collection-dates']").show()
|
|
$("select[class='js-shift-recount-scrutiny-dates']").hide()
|
|
break
|
|
when "recount_scrutiny"
|
|
$("select[class='js-shift-recount-scrutiny-dates']").show()
|
|
$("select[class='js-shift-vote-collection-dates']").hide()
|