- 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:
Christophe Dumez 2008-09-28 16:23:08 +00:00
parent fec1de6383
commit f73256e0ea
3 changed files with 31 additions and 0 deletions

View file

@ -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();
}
}
});