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