mailr/app/assets/javascripts/mailr.js
Wojciech Todryk 298eb0a023 favicon
2013-02-02 14:54:09 +01:00

10 lines
220 B
JavaScript
Executable file

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