Add support of shortcut keys for changeMode

This commit is contained in:
Wu Cheng-Han 2016-09-18 16:30:08 +08:00
parent b708a72873
commit 9d71adc05c
3 changed files with 15 additions and 1 deletions

View file

@ -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 () {