mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-14 01:03:08 -07:00
- Hide priority column in Web UI when queueing is disabled
This commit is contained in:
parent
2651ec5f0b
commit
afbfe1a96d
4 changed files with 30 additions and 3 deletions
|
@ -153,10 +153,13 @@ window.addEvent('domready', function(){
|
|||
myTableUP.removeRow(hash);
|
||||
}
|
||||
});
|
||||
if(queueing_enabled)
|
||||
if(queueing_enabled) {
|
||||
$('queueingButtons').removeClass('invisible');
|
||||
else
|
||||
myTable.showPriority();
|
||||
} else {
|
||||
$('queueingButtons').addClass('invisible');
|
||||
myTable.hidePriority();
|
||||
}
|
||||
}
|
||||
waiting=false;
|
||||
ajaxfn.delay(1000);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue