It would be nice to have access keys to open all drop down menus.

A snippet for up an down keys in jQuery:

  $(document).keydown(function(e) {
    var key = e.charCode ? e.charCode : e.keyCode ? e.keyCode : 0;
    switch (key) {
      case 37 :
        // alert('goLeft');
        break;
      case 38 :
        // alert('goUp');
        break;
      case 39 :
        // alert('goRight');
        break;
      case 40 :
        // alert('goDown');
        break;
      // case 13 :
      // alert('Activate');
      // break;
    }
  });

Just an idea. To me this would still accelerate the use of AM a bit.

Comments

sun’s picture

Project: Administration menu » Admin Menu Hider
Version: 6.x-1.1 » 6.x-2.x-dev

Moving over to the DAM dropdown companion module to see whether this might be worth in there.

sun’s picture

Status: Active » Closed (duplicate)