mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-14 17:23:07 -07:00
- Fixed shift selection from bottom to top (Web UI)
- Fixed bug where current selection was not cleared correctly (Web Ui) - Allow to select all torrents using CRTL+A (Web Ui)
This commit is contained in:
parent
fec1de6383
commit
f73256e0ea
3 changed files with 31 additions and 0 deletions
|
@ -147,3 +147,13 @@ window.addEvent('domready', function(){
|
|||
ajaxfn();
|
||||
// ajaxfn.periodical(5000);
|
||||
});
|
||||
|
||||
window.addEvent('keydown', function(event){
|
||||
if (event.key == 'a' && event.control) {
|
||||
if($("Tab1").hasClass('active')) {
|
||||
myTable.selectAll();
|
||||
} else {
|
||||
myTableUP.selectAll();
|
||||
}
|
||||
}
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue