/*
* @title ☑
* @description Check checkbox all
* @include http://*
* @license MIT License http://nrm.mit-license.org/2012
* @require
*/
(function () {
Array.prototype.slice.call(document.querySelectorAll('input[type=checkbox]:not(:checked)')).forEach(function (box) {
box.checked = true;
});
})();