Adds CTRL+S support in all edit pages + loads of warning clean up

This commit is contained in:
hartvig
2011-07-05 11:30:06 -02:00
parent 304e7976bc
commit 1c26ddd87f
124 changed files with 2511 additions and 2188 deletions

View File

@@ -28,6 +28,8 @@ function shortcutCheckKeysDown(e) {
keycode = e.keyCode;
//save
// uncommented by NH 07-05-11 as it's been replaced by a native bindShortcutkey() method in the ClientManager
/*
if (ctrlDown && keycode == 83) {
doSubmit();
if (window.addEventListener) {
@@ -35,7 +37,7 @@ function shortcutCheckKeysDown(e) {
} else
return false;
}
*/
//snippet
if (ctrlDown && keycode == 77) {
if (window.umbracoInsertSnippet) {