Skip to content

Instantly share code, notes, and snippets.

@syoichi
Forked from taizooo/cssonoff.js
Created March 15, 2012 01:03
Show Gist options
  • Save syoichi/2040869 to your computer and use it in GitHub Desktop.
Save syoichi/2040869 to your computer and use it in GitHub Desktop.
対youpy.css cssonoff
/*jslint browser: true, maxerr: 50, maxlen: 80, indent: 4*/
// Edition 2012-03-07
function cssOnOff(disabled) {
'use strict';
Array.prototype.forEach.call(
document.styleSheets,
function disabledSheet(sheet) {
sheet.disabled = disabled;
}
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment