mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-12 16:23:07 -07:00
Add option to show/hide webui status bar
This commit is contained in:
parent
98a1c111b9
commit
8a2e3f5d93
2 changed files with 26 additions and 2 deletions
|
@ -161,11 +161,20 @@ window.addEvent('load', function () {
|
|||
$('mochaToolbar').addClass('invisible');
|
||||
}
|
||||
|
||||
// Show Status Bar is enabled by default
|
||||
var showStatusBar = true;
|
||||
if (localStorage.getItem('show_status_bar') !== null)
|
||||
showStatusBar = localStorage.getItem('show_status_bar') === "true";
|
||||
if (!showStatusBar) {
|
||||
$('showStatusBarLink').firstChild.style.opacity = '0';
|
||||
$('desktopFooterWrapper').addClass('invisible');
|
||||
}
|
||||
|
||||
var speedInTitle = localStorage.getItem('speed_in_browser_title_bar') == "true";
|
||||
if (!speedInTitle)
|
||||
$('speedInBrowserTitleBarLink').firstChild.style.opacity = '0';
|
||||
|
||||
// After Show Top Toolbar
|
||||
// After showing/hiding the toolbar + status bar
|
||||
MochaUI.Desktop.setDesktopSize();
|
||||
|
||||
var syncMainDataLastResponseId = 0;
|
||||
|
@ -475,6 +484,20 @@ window.addEvent('load', function () {
|
|||
MochaUI.Desktop.setDesktopSize();
|
||||
});
|
||||
|
||||
$('showStatusBarLink').addEvent('click', function(e) {
|
||||
showStatusBar = !showStatusBar;
|
||||
localStorage.setItem('show_status_bar', showStatusBar.toString());
|
||||
if (showStatusBar) {
|
||||
$('showStatusBarLink').firstChild.style.opacity = '1';
|
||||
$('desktopFooterWrapper').removeClass('invisible');
|
||||
}
|
||||
else {
|
||||
$('showStatusBarLink').firstChild.style.opacity = '0';
|
||||
$('desktopFooterWrapper').addClass('invisible');
|
||||
}
|
||||
MochaUI.Desktop.setDesktopSize();
|
||||
});
|
||||
|
||||
$('speedInBrowserTitleBarLink').addEvent('click', function(e) {
|
||||
speedInTitle = !speedInTitle;
|
||||
localStorage.setItem('speed_in_browser_title_bar', speedInTitle.toString());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue