select-multiple icon indicating copy to clipboard operation
select-multiple copied to clipboard

SpaceBar not working

Open zhbzhbzhbz opened this issue 8 years ago • 1 comments

I use Chrome. Assuming that I pressed SpaceBar, then the blue cover dismissed(unselected), then I pressed Up/Down, but the selected item will be the first one or the last one... Thank you~

zhbzhbzhbz avatar Feb 08 '17 09:02 zhbzhbzhbz

I temporarily fixed this bug in JS file occasionally... But I don't know whether there are any unknown bugs in it. Firstly, insert the code after Line 181

case 32:
    e.preventDefault();
    e.stopPropagation();
    that.selectHighlighted($list);
    return;

Secondly, remove the code at Line 276; Thirdly(Optional), remove the code at Line 283~285. This change can make ↑/↓ always available no matter where the mouse is going to.

zhbzhbzhbz avatar Feb 08 '17 11:02 zhbzhbzhbz