mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
Implement statistics window in web UI
This commit is contained in:
parent
76e1c3b10b
commit
1ce71fc63e
6 changed files with 124 additions and 0 deletions
|
@ -212,6 +212,21 @@ initializeWindows = function() {
|
|||
});
|
||||
}
|
||||
|
||||
StatisticsLinkFN = function() {
|
||||
new MochaUI.Window({
|
||||
id: 'statisticspage',
|
||||
title: 'QBT_TR(Statistics)QBT_TR',
|
||||
loadMethod: 'xhr',
|
||||
contentURL: 'statistics.html',
|
||||
scrollbars: false,
|
||||
resizable: false,
|
||||
maximizable: false,
|
||||
width: 275,
|
||||
height: 370,
|
||||
padding: 10
|
||||
});
|
||||
}
|
||||
|
||||
downloadLimitFN = function() {
|
||||
var h = torrentsTable.selectedRowsIds();
|
||||
if (h.length) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue