mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 23:17:21 -06: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:
@@ -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();
|
||||
}
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user