Skip to content

Instantly share code, notes, and snippets.

@joshuarule
Created December 11, 2013 17:25
Show Gist options
  • Save joshuarule/7914707 to your computer and use it in GitHub Desktop.
Save joshuarule/7914707 to your computer and use it in GitHub Desktop.
Singularity Grid Reveal
(function() {
window.onload = function() {
var body = document.body
body.onkeypress = function(e) {
if (e.keyCode == 103 || e.charCode == 103) {
if( "show" == $("[data-development-grid]").attr("data-development-grid")){
$("[data-development-grid]").attr("data-development-grid", "hide")
}else{
$("[data-development-grid]").attr("data-development-grid", "show")
}
}
}
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment