Strict mode is supported by 98% of the browsers, including Internet Explorer 10, and it helps developers avoid common JavaScript pitfalls.
13 lines
259 B
CoffeeScript
13 lines
259 B
CoffeeScript
"use strict"
|
|
|
|
App.CheckboxToggle =
|
|
|
|
initialize: ->
|
|
$("[data-checkbox-toggle]").on "change", ->
|
|
$this = $(this)
|
|
$target = $($this.data("checkbox-toggle"))
|
|
if $this.is(":checked")
|
|
$target.show()
|
|
else
|
|
$target.hide()
|