From 9d71adc05c93577d64f47180e3429bf3cd9a7be0 Mon Sep 17 00:00:00 2001 From: Wu Cheng-Han Date: Sun, 18 Sep 2016 16:30:08 +0800 Subject: Add support of shortcut keys for changeMode --- public/js/index.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'public/js') 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 () { -- cgit v1.2.3