mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
rework directory picker
This commit is contained in:
parent
4670ba6fbf
commit
5c4307cf85
31 changed files with 546 additions and 370 deletions
|
@ -1944,7 +1944,10 @@ var AppInfo = {};
|
|||
}
|
||||
|
||||
var date = new Date();
|
||||
if (date.getMonth() == 9 && date.getDate() == 31) {
|
||||
var month = date.getMonth();
|
||||
var day = date.getDate();
|
||||
|
||||
if (month == 9 && day >= 30) {
|
||||
require(['themes/halloween/theme']);
|
||||
return;
|
||||
}
|
||||
|
@ -2041,7 +2044,8 @@ var AppInfo = {};
|
|||
|
||||
var paths = {
|
||||
velocity: "bower_components/velocity/velocity.min",
|
||||
tvguide: 'components/tvguide/tvguide'
|
||||
tvguide: 'components/tvguide/tvguide',
|
||||
directorybrowser: 'components/directorybrowser/directorybrowser'
|
||||
};
|
||||
|
||||
if (Dashboard.isRunningInCordova()) {
|
||||
|
@ -2214,7 +2218,7 @@ var AppInfo = {};
|
|||
define("fileupload", ["apiclient/fileupload"]);
|
||||
}
|
||||
|
||||
var deps =[];
|
||||
var deps = [];
|
||||
|
||||
if (!deviceId) {
|
||||
deps.push('cryptojs-sha1');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue