From: Tom Needham Date: Mon, 23 Jan 2012 20:59:37 +0000 (+0000) Subject: disable keyboard shortcuts as temp fix X-Git-Tag: v3.0~19^2~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e1a499f65d84aeb11e598ea8d34f4ff5627fc4bd;p=nextcloud-server.git disable keyboard shortcuts as temp fix --- diff --git a/apps/files_texteditor/js/editor.js b/apps/files_texteditor/js/editor.js index cb1af3dd6db..6e154bedb9c 100644 --- a/apps/files_texteditor/js/editor.js +++ b/apps/files_texteditor/js/editor.js @@ -234,6 +234,7 @@ function hideFileEditor(){ // Keyboard Shortcuts var ctrlBtn = false; +// TODO fix detection of ctrl keyup // returns true if ctrl+s or cmd+s is being pressed function checkForSaveKeyPress(e){ if(e.which == 17 || e.which == 91) ctrlBtn=true; @@ -276,5 +277,5 @@ $(document).ready(function(){ bindControlEvents(); // Binds the save keyboard shortcut events - $(document).unbind('keydown').bind('keydown',checkForSaveKeyPress); + //$(document).unbind('keydown').bind('keydown',checkForSaveKeyPress); });