/*
* @title cssOnOff
* @description toggle stylesheet on/off
* @include http://*
* @license MIT License
*/
/* via https://gist.github.com/2040869 */
(function cssOnOff() {
Array.prototype.forEach.call(
document.styleSheets,
function disabledSheet(sheet) {
sheet.disabled = !sheet.disabled;
});
})()