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

update components

This commit is contained in:
Luke Pulverenti 2016-02-27 22:39:52 -05:00
parent 462bbad010
commit dfdd80f607
6 changed files with 19 additions and 12 deletions

View file

@ -1730,7 +1730,11 @@
var result = {};
result.screenWidth = screenWidth;
if (!AppInfo.hasLowImageBandwidth) {
if (AppInfo.hasLowImageBandwidth) {
if (!AppInfo.isNativeApp) {
screenWidth *= .7;
}
} else {
screenWidth *= 1.2;
}

View file

@ -1725,6 +1725,7 @@ var AppInfo = {};
humanedate: 'components/humanedate',
chromecasthelpers: 'components/chromecasthelpers',
jQuery: bowerPath + '/jquery/dist/jquery.slim.min',
jQueryFull: bowerPath + '/jquery/dist/jquery.min',
fastclick: bowerPath + '/fastclick/lib/fastclick',
events: apiClientBowerPath + '/events',
credentialprovider: apiClientBowerPath + '/credentials',
@ -2403,6 +2404,7 @@ function addLegacyDependencies(depends, url) {
depends.push('jqmcollapsible');
depends.push('jqmcheckbox');
depends.push('legacy/dashboard');
depends.push('jQueryFull');
}
depends.push('jqmcontrolgroup');