mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-25 02:36:10 +03:00
Merge pull request #13388 from Chocobo1/webui
Add missing semicolons in WebUI
This commit is contained in:
commit
70d9ea8034
4 changed files with 24 additions and 24 deletions
|
@ -1305,9 +1305,9 @@ window.qBittorrent.DynamicTable = (function() {
|
||||||
return false;
|
return false;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
const tracker = trackerList.get(trackerHashInt)
|
const tracker = trackerList.get(trackerHashInt);
|
||||||
if (tracker && !tracker.torrents.includes(row['full_data'].rowId))
|
if (tracker && !tracker.torrents.includes(row['full_data'].rowId))
|
||||||
return false
|
return false;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -824,7 +824,7 @@ const initializeWindows = function() {
|
||||||
hashes = torrentsTable.getFilteredTorrentsHashes('all', CATEGORIES_ALL, TAGS_ALL, TRACKERS_TRACKERLESS);
|
hashes = torrentsTable.getFilteredTorrentsHashes('all', CATEGORIES_ALL, TAGS_ALL, TRACKERS_TRACKERLESS);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
hashes = trackerList.get(trackerHashInt).torrents
|
hashes = trackerList.get(trackerHashInt).torrents;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -851,7 +851,7 @@ const initializeWindows = function() {
|
||||||
hashes = torrentsTable.getFilteredTorrentsHashes('all', CATEGORIES_ALL, TAGS_ALL, TRACKERS_TRACKERLESS);
|
hashes = torrentsTable.getFilteredTorrentsHashes('all', CATEGORIES_ALL, TAGS_ALL, TRACKERS_TRACKERLESS);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
hashes = trackerList.get(trackerHashInt).torrents
|
hashes = trackerList.get(trackerHashInt).torrents;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -462,7 +462,7 @@
|
||||||
recFlatten(current[child], child, depth + 1, currentFullName);
|
recFlatten(current[child], child, depth + 1, currentFullName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
recFlatten(response);
|
recFlatten(response);
|
||||||
|
|
||||||
// check if rows matche flattend response
|
// check if rows matche flattend response
|
||||||
|
|
|
@ -456,7 +456,7 @@ Supports the formats: S01E01, 1x1, 2017.01.01 and 01.01.2017 (Date formats also
|
||||||
}).send();
|
}).send();
|
||||||
$('savetoDifferentDir').addEvent('click', () => {
|
$('savetoDifferentDir').addEvent('click', () => {
|
||||||
$('saveToText').disabled = !$('savetoDifferentDir').checked;
|
$('saveToText').disabled = !$('savetoDifferentDir').checked;
|
||||||
})
|
});
|
||||||
updateRulesList();
|
updateRulesList();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue