Browse Source

Remove unused/superfluous variables

adaptive-webui-19844
Thomas Piccirello 7 years ago committed by Chocobo1
parent
commit
1f42ab8c4f
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
  1. 5
      src/webui/www/private/scripts/mocha-init.js

5
src/webui/www/private/scripts/mocha-init.js

@ -146,7 +146,6 @@ initializeWindows = function() { @@ -146,7 +146,6 @@ initializeWindows = function() {
uploadLimitFN = function() {
var hashes = torrentsTable.selectedRowsIds();
if (hashes.length) {
var hash = hashes[0];
new MochaUI.Window({
id: 'uploadLimitPage',
title: "QBT_TR(Torrent Upload Speed Limiting)QBT_TR[CONTEXT=TransferListWidget]",
@ -257,7 +256,6 @@ initializeWindows = function() { @@ -257,7 +256,6 @@ initializeWindows = function() {
downloadLimitFN = function() {
var hashes = torrentsTable.selectedRowsIds();
if (hashes.length) {
var hash = hashes[0];
new MochaUI.Window({
id: 'downloadLimitPage',
title: "QBT_TR(Torrent Download Speed Limiting)QBT_TR[CONTEXT=TransferListWidget]",
@ -388,12 +386,11 @@ initializeWindows = function() { @@ -388,12 +386,11 @@ initializeWindows = function() {
var hash = hashes[0];
var row = torrentsTable.rows[hash];
if (row) {
var name = row.full_data.name;
new MochaUI.Window({
id: 'renamePage',
title: "QBT_TR(Rename)QBT_TR[CONTEXT=TransferListWidget]",
loadMethod: 'iframe',
contentURL: 'rename.html?hash=' + hashes[0] + '&name=' + name,
contentURL: 'rename.html?hash=' + hashes[0] + '&name=' + row.full_data.name,
scrollbars: false,
resizable: false,
maximizable: false,

Loading…
Cancel
Save