mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-23 16:58:06 -06:00
- Torrents can now be rechecked from Web UI (patch by Stephanos Antaris)
- Torrents paused/resumed state is not reflected in GUI if the action was executed from Web UI
This commit is contained in:
@@ -53,6 +53,13 @@ initializeWindows = function(){
|
||||
height: 120
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
addClickEvent('delete', function(e){
|
||||
new Event(e).stop();
|
||||
@@ -67,6 +74,8 @@ initializeWindows = function(){
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
||||
addClickEvent('deletePerm', function(e){
|
||||
new Event(e).stop();
|
||||
@@ -82,7 +91,7 @@ initializeWindows = function(){
|
||||
}
|
||||
});
|
||||
|
||||
['pause','resume','decreasePrio','increasePrio'].each(function(item) {
|
||||
['pause','resume','decreasePrio','increasePrio','recheck'].each(function(item) {
|
||||
addClickEvent(item, function(e){
|
||||
new Event(e).stop();
|
||||
if($("Tab1").hasClass('active')) {
|
||||
@@ -105,6 +114,8 @@ initializeWindows = function(){
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
|
||||
addClickEvent('bug', function(e){
|
||||
new Event(e).stop();
|
||||
new MochaUI.Window({
|
||||
|
||||
Reference in New Issue
Block a user