Commit 411a6f9d authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Убрал обработку ctrl + S (должно обрабатываться в меню)

Баг http://bugzserver/show_bug.cgi?id=21515

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@50958 954022d7-b5bf-4e40-9824-e11837661b57
parent 7cb69011
......@@ -1779,7 +1779,7 @@
}
break;
case 83: // S
/*case 83: // S
if (event.ctrlKey) {
if (!t.hasFocus) {t.setFocus(true);}
if (hieroglyph) {t._syncEditors();}
......@@ -1788,7 +1788,7 @@
tryCloseEditor();
return false;
}
break;
break;*/
case 85: // U
if (event.ctrlKey) {
......
......@@ -626,7 +626,7 @@
}
// Почему-то очень хочется обрабатывать лишние условия в нашем коде, вместо обработки наверху...
if (!t.enableKeyEvents && event.ctrlKey && (80 === event.which || 83 === event.which)) {
if (!t.enableKeyEvents && event.ctrlKey && (80 === event.which/* || 83 === event.which*/)) {
// Только если отключены эвенты и нажаты Ctrl+S или Ctrl+P мы их обработаем
break;
}
......@@ -789,7 +789,7 @@
case 53: // make strikethrough Ctrl + 5
case 66: // make bold Ctrl + b
case 73: // make italic Ctrl + i
case 83: // save Ctrl + s
//case 83: // save Ctrl + s
case 85: // make underline Ctrl + u
case 86: // paste Ctrl + v
case 88: // cut Ctrl + x
......@@ -816,7 +816,7 @@
73: function () {stop(); t.handlers.trigger("setFontAttributes", "i");},
85: function () {stop(); t.handlers.trigger("setFontAttributes", "u");},
80: function () {stop(); t.handlers.trigger("print");},
83: function () {stop(); t.handlers.trigger("save");},
//83: function () {stop(); t.handlers.trigger("save");},
67: function () {t.handlers.trigger("copy");},
86: function () {
if (!window.GlobalPasteFlag)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment