mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-15 17:53:08 -07:00
Rename priority to queue in the context of torrents
This commit is contained in:
parent
afa73d4e89
commit
7b31868e3c
20 changed files with 171 additions and 160 deletions
|
@ -93,7 +93,7 @@ var deleteTorrentsByCategoryFN = function() {};
|
|||
var copyNameFN = function() {};
|
||||
var copyMagnetLinkFN = function() {};
|
||||
var copyHashFN = function() {};
|
||||
var setPriorityFN = function() {};
|
||||
var setQueuePositionFN = function() {};
|
||||
|
||||
var initializeWindows = function() {
|
||||
saveWindowSize = function(windowId) {
|
||||
|
@ -742,11 +742,11 @@ var initializeWindows = function() {
|
|||
['decreasePrio', 'increasePrio', 'topPrio', 'bottomPrio'].each(function(item) {
|
||||
addClickEvent(item, function(e) {
|
||||
new Event(e).stop();
|
||||
setPriorityFN(item);
|
||||
setQueuePositionFN(item);
|
||||
});
|
||||
});
|
||||
|
||||
setPriorityFN = function(cmd) {
|
||||
setQueuePositionFN = function(cmd) {
|
||||
var hashes = torrentsTable.selectedRowsIds();
|
||||
if (hashes.length) {
|
||||
new Request({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue