Coffeescript insists on adding a return statement, how do I get rid of it?
Coffeescript:
$('.box-menu').each (index, value) ->
@boxes.push new LW.Box.Box @ajax, $(this).data('type')
Javascript after compilation:
$('.box-menu').each(function(index, value) {
return this.boxes.push(new LW.Box.Box(this.ajax, $(this).data('type')));
});