Skip to content

Instantly share code, notes, and snippets.

@divadrei
Created December 6, 2013 15:33
Show Gist options
  • Save divadrei/7826583 to your computer and use it in GitHub Desktop.
Save divadrei/7826583 to your computer and use it in GitHub Desktop.
document.addEventListener("keydown", function(e) {
if (e.keyCode == 83 && (navigator.platform.match("Mac") ? e.metaKey : e.ctrlKey)) {
e.preventDefault();
$('form[action="/templates/publish"]').submit()
}
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment