Skip to content

Instantly share code, notes, and snippets.

@kamsar
Created January 14, 2015 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kamsar/2444c4fbfcf914936f3f to your computer and use it in GitHub Desktop.
Save kamsar/2444c4fbfcf914936f3f to your computer and use it in GitHub Desktop.
Fix Ctrl-S in Sitecore 8 RTM Experience Editor
// Open the Website\sitecore\shell\Applications\Page Modes\PageEditor.js file
// Search for "e.keyCode == 83"
// Make the statement look like this:
//Ctrl+S
if (e.keyCode == 83 && e.ctrlKey) {
e.preventDefault();
this.onSaving();//fix for 428752
this.save();
return;
}
// Regards to Sitecore support for this fix - it's not mine.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment