I have a function that toggles all of the others checkboxes when the last checkbox is clicked.
It works perfectly in ordinary JavaScript:
$(document).ready(function() {
$('#manage').click(function(event) {
if(this.checked) {
$('.checkbox:checkbox').each(function() {
this.checked = true;
});
}
if(!this.checked) {
$('.checkbox:checkbox').each(function() {
this.checked = false;
});
}
});
});
However when I compile into CoffeeScript (using http://js2coffee.org/ ) the functionality breaks when the checkboxes are toggled off:
$(document).ready ->
$("#manage").click (event) ->
if @checked
$(".checkbox:checkbox").each ->
@checked = true
unless @checked
$(".checkbox:checkbox").each ->
@checked = false
I think this is because the second each loop is only running once.
What's going wrong?