mailr/app/assets/javascripts/mailr.js
Wojciech Todryk 0daf487816 dev cont
2012-03-24 13:23:34 +01:00

11 lines
243 B
JavaScript
Executable file

$(function() {
console.log("ready");
$("#toggleall").click(function() {
var checked_status = this.checked;
jQuery("input[type='checkbox']").each(function() {
this.checked = checked_status;
});
});
});