1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

fix alpha picker moving when page scrolls

This commit is contained in:
Luke Pulverenti 2016-05-26 13:27:51 -04:00
parent 69a410794c
commit 113b487c37
2 changed files with 6 additions and 2 deletions

View file

@ -748,7 +748,10 @@
}
}
document.querySelector('.libraryMenuButtonText').innerHTML = html;
var libraryMenuButtonText = document.querySelector('.libraryMenuButtonText');
if (libraryMenuButtonText) {
libraryMenuButtonText.innerHTML = html;
}
},
setBackButtonVisible: function (visible) {