diff options
Diffstat (limited to 'public/js')
-rw-r--r-- | public/js/index.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/public/js/index.js b/public/js/index.js index dbedd66c..d9e4955f 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -805,6 +805,18 @@ $(document).ready(function () { }); //tooltip $('[data-toggle="tooltip"]').tooltip(); + // shortcuts + // allow on all tags + key.filter = function (e) { return true; }; + key('ctrl+alt+e', function (e) { + changeMode(modeType.edit); + }); + key('ctrl+alt+v', function (e) { + changeMode(modeType.view); + }); + key('ctrl+alt+b', function (e) { + changeMode(modeType.both); + }); }); //when page resize $(window).resize(function () { |