mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-05 07:02:31 -06:00
Add explicit semicolon
This commit is contained in:
@@ -582,7 +582,7 @@ window.addEvent('load', function() {
|
||||
torrentsTable.reselectRows(torrentsTableSelectedRows);
|
||||
}
|
||||
syncRequestInProgress = false;
|
||||
syncData(getSyncMainDataInterval())
|
||||
syncData(getSyncMainDataInterval());
|
||||
}
|
||||
});
|
||||
syncRequestInProgress = true;
|
||||
@@ -599,7 +599,7 @@ window.addEvent('load', function() {
|
||||
clearTimeout(syncMainDataTimer);
|
||||
syncMainDataTimer = syncMainData.delay(delay);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
const processServerState = function() {
|
||||
let transfer_info = window.qBittorrent.Misc.friendlyUnit(serverState.dl_info_speed, true);
|
||||
|
||||
@@ -1716,7 +1716,7 @@ window.qBittorrent.DynamicTable = (function() {
|
||||
const size = window.qBittorrent.Misc.friendlyUnit(this.getRowValue(row), false);
|
||||
td.set('text', size);
|
||||
td.set('title', size);
|
||||
}
|
||||
};
|
||||
const displayPercentage = function(td, row) {
|
||||
const value = window.qBittorrent.Misc.friendlyPercentage(this.getRowValue(row));
|
||||
td.set('text', value);
|
||||
|
||||
@@ -160,7 +160,7 @@ window.qBittorrent.PropFiles = (function() {
|
||||
setCheckboxPartial(checkbox);
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
const isPriorityComboExists = function(id) {
|
||||
return ($('comboPrio' + id) !== null);
|
||||
@@ -631,7 +631,7 @@ window.qBittorrent.PropFiles = (function() {
|
||||
rowElem.addClass("invisible");
|
||||
else
|
||||
rowElem.removeClass("invisible");
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Update a node's collapsed state and icon
|
||||
@@ -653,7 +653,7 @@ window.qBittorrent.PropFiles = (function() {
|
||||
collapseIcon.addClass("rotate");
|
||||
else
|
||||
collapseIcon.removeClass("rotate");
|
||||
}
|
||||
};
|
||||
|
||||
const _isCollapsed = function(node) {
|
||||
const span = $('filesTablefileName' + node.rowId);
|
||||
@@ -692,7 +692,7 @@ window.qBittorrent.PropFiles = (function() {
|
||||
});
|
||||
});
|
||||
torrentFilesTable.altRow();
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Collapses a folder node with the option to recursively collapse all children
|
||||
|
||||
Reference in New Issue
Block a user