mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-29 05:48:47 +03:00
Rename variables for clarity
This commit is contained in:
parent
43656aaa1e
commit
9b874b8941
1 changed files with 3 additions and 3 deletions
|
@ -733,9 +733,9 @@
|
|||
|
||||
// Web UI tab
|
||||
updateHttpsSettings = function() {
|
||||
var isAddTrackersEnabled = $('use_https_checkbox').getProperty('checked');
|
||||
$('ssl_key_textarea').setProperty('disabled', !isAddTrackersEnabled);
|
||||
$('ssl_cert_textarea').setProperty('disabled', !isAddTrackersEnabled);
|
||||
var isUseHttpsEnabled = $('use_https_checkbox').getProperty('checked');
|
||||
$('ssl_key_textarea').setProperty('disabled', !isUseHttpsEnabled);
|
||||
$('ssl_cert_textarea').setProperty('disabled', !isUseHttpsEnabled);
|
||||
};
|
||||
|
||||
updateBypasssAuthSettings = function() {
|
||||
|
|
Loading…
Reference in a new issue