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

update nav drawer

This commit is contained in:
Luke Pulverenti 2016-07-07 11:56:49 -04:00
parent a1057972b4
commit be8eed0411
7 changed files with 1076 additions and 65 deletions

View file

@ -1179,6 +1179,10 @@ var Dashboard = {
quality -= 10;
}
if (browserInfo.mobile) {
quality -= 10;
}
if (AppInfo.hasLowImageBandwidth) {
// The native app can handle a little bit more than safari
@ -1963,6 +1967,7 @@ var AppInfo = {};
define("swiper", [bowerPath + "/Swiper/dist/js/swiper.min", "css!" + bowerPath + "/Swiper/dist/css/swiper.min"], returnFirstDependency);
define("scroller", [embyWebComponentsBowerPath + "/scroller/smoothscroller"], returnFirstDependency);
define("toast", [embyWebComponentsBowerPath + "/toast/toast"], returnFirstDependency);
define("scrollHelper", [embyWebComponentsBowerPath + "/scrollhelper"], returnFirstDependency);