Skip to content

Instantly share code, notes, and snippets.

@dimapaloskin
Created February 22, 2014 09:35
Show Gist options
  • Save dimapaloskin/9151173 to your computer and use it in GitHub Desktop.
Save dimapaloskin/9151173 to your computer and use it in GitHub Desktop.
Ctrl+S
$(document).keydown(function(event) {
//19 for Mac Command+S
if (!( String.fromCharCode(event.which).toLowerCase() == 's' && event.ctrlKey) && !(event.which == 19)) return true;
EditSite_SaveEditingText();
event.preventDefault();
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment