Created
January 14, 2015 14:25
-
-
Save kamsar/2444c4fbfcf914936f3f to your computer and use it in GitHub Desktop.
Fix Ctrl-S in Sitecore 8 RTM Experience Editor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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