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

update keyframe setting

This commit is contained in:
Luke Pulverenti 2015-12-12 01:49:03 -05:00
parent 79fa61fa33
commit a75e37be73
18 changed files with 53 additions and 53 deletions

View file

@ -1867,6 +1867,13 @@ var AppInfo = {};
define('fetch', [bowerPath + '/fetch/fetch']);
define('webcomponentsjs', [bowerPath + '/webcomponentsjs/webcomponents-lite.min.js']);
define('native-promise-only', [bowerPath + '/native-promise-only/lib/npo.src']);
if (Dashboard.isRunningInCordova()) {
define('registrationservices', ['cordova/registrationservices']);
} else {
define('registrationservices', ['scripts/registrationservices']);
}
}
function init(hostingAppInfo) {
@ -2145,25 +2152,19 @@ var AppInfo = {};
}
if (Dashboard.isRunningInCordova()) {
deps.push('cordova/registrationservices');
deps.push('registrationservices');
deps.push('cordova/back');
if (browserInfo.android) {
deps.push('cordova/android/androidcredentials');
}
} else {
deps.push('scripts/registrationservices');
}
if (browserInfo.msie) {
deps.push('devices/ie/ie');
}
if (AppInfo.isNativeApp && browserInfo.safari) {
deps.push('cordova/ios/tabbar');
}
deps.push('scripts/search');
deps.push('scripts/librarylist');
deps.push('scripts/alphapicker');
@ -2223,6 +2224,11 @@ var AppInfo = {};
postInitDependencies.push('scripts/nowplayingbar');
}
if (AppInfo.isNativeApp && browserInfo.safari) {
postInitDependencies.push('cordova/ios/tabbar');
}
require(postInitDependencies);
});
}