mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-29 11:48:05 -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:
@@ -39,8 +39,10 @@
|
||||
<ul>
|
||||
<li><a id="resumeAllLink">Start All</a></li>
|
||||
<li><a id="pauseAllLink">Pause All</a></li>
|
||||
<li><a id="recheckAllLink">Recheck All</a></li>
|
||||
<li class="divider"><a id="resumeLink">Start</a></li>
|
||||
<li><a id="pauseLink">Pause</a></li>
|
||||
<li><a id="recheckLink">Recheck</a></li>
|
||||
<li class="divider"><a id="deleteLink">Delete</a></li>
|
||||
<li><a id="deletePermLink">Delete from HD</a></li>
|
||||
</ul>
|
||||
|
||||
@@ -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