mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update metadata manager
This commit is contained in:
parent
a7ade97b44
commit
5f308d38a0
14 changed files with 216 additions and 116 deletions
|
@ -732,7 +732,7 @@
|
|||
var mainDrawerButton = document.querySelector('.mainDrawerButton');
|
||||
|
||||
if (mainDrawerButton) {
|
||||
if (page.getAttribute('data-menubutton') == 'false') {
|
||||
if (page.getAttribute('data-menubutton') == 'false' && $.browser.mobile) {
|
||||
mainDrawerButton.classList.add('hide');
|
||||
} else {
|
||||
mainDrawerButton.classList.remove('hide');
|
||||
|
@ -789,7 +789,7 @@
|
|||
|
||||
function updateBackButton(page) {
|
||||
|
||||
var canGoBack = !page.classList.contains('homePage');
|
||||
var canGoBack = !page.classList.contains('homePage') && history.length > 0;
|
||||
|
||||
var backButton = document.querySelector('.headerBackButton');
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue