collective / collective.sidebar

A sidebar for Plone to consolidate toolbar and navigation
GNU General Public License v2.0
6 stars 4 forks source link

Keyboard Shortcuts #91

Open santonelli opened 3 years ago

santonelli commented 3 years ago

Summary

A clear and concise description of the requested feature.

Acceptance Criteria

A checklist of what's required to consider this feature as done.

Additional context

Add any other context or screenshots about the feature request here.

santonelli commented 3 years ago
document.onkeydown = keydown;
function keydown(evt){
  if (!evt) evt = event;
  if (evt.ctrlKey && evt.keyCode==83){
    $('#portal-navigation-cover').fadeIn('500');
    $('body').attr('data-with-sidebar', 'true');
  }
  if (evt.keyCode==27){
    $('#portal-navigation-cover').fadeOut('500');
    $('body').attr('data-with-sidebar', 'false');    
  }
}