diff --git a/client/components/sidebar/sidebar.jade b/client/components/sidebar/sidebar.jade index 31206299e..65c002a47 100644 --- a/client/components/sidebar/sidebar.jade +++ b/client/components/sidebar/sidebar.jade @@ -5,10 +5,10 @@ template(name="sidebar") // title="{{showTongueTitle}}") // i.fa.fa-navicon .sidebar-actions - //.sidebar-shortcuts - // a.board-header-btn.js-shortcuts(title="{{_ 'keyboard-shortcuts' }}") - // i.fa.fa-keyboard-o - // span {{_ 'keyboard-shortcuts' }} + .sidebar-shortcuts + a.board-header-btn.js-shortcuts(title="{{_ 'keyboard-shortcuts' }}") + i.fa.fa-keyboard-o + span {{_ 'keyboard-shortcuts' }} a.sidebar-xmark.js-close-sidebar ✕ .sidebar-content.js-board-sidebar-content //a.hide-btn.js-hide-sidebar diff --git a/client/components/sidebar/sidebar.js b/client/components/sidebar/sidebar.js index 25dd1774f..f7e8f2b2b 100644 --- a/client/components/sidebar/sidebar.js +++ b/client/components/sidebar/sidebar.js @@ -123,11 +123,9 @@ BlazeComponent.extendComponent({ location.reload(); } }, -/* 'click .js-shortcuts'() { FlowRouter.go('shortcuts'); }, -*/ 'click .js-close-sidebar'() { Sidebar.toggle() }, diff --git a/client/lib/keyboard.js b/client/lib/keyboard.js index c5fd98d7e..b84c1e494 100644 --- a/client/lib/keyboard.js +++ b/client/lib/keyboard.js @@ -1,6 +1,5 @@ import { ReactiveCache } from '/imports/reactiveCache'; -/* // XXX There is no reason to define these shortcuts globally, they should be // attached to a template (most of them will go in the `board` template). @@ -256,11 +255,8 @@ Mousetrap.bind('n', evt => { evt.preventDefault(); } }); -*/ - Template.keyboardShortcuts.helpers({ -/* mapping: [ { keys: ['w'], @@ -323,5 +319,4 @@ Template.keyboardShortcuts.helpers({ action: 'remove-labels-multiselect' }, ], -*/ });