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

Removed seasonal theme support

As our sole season theme was for Halloween and relied on dubiously licensed art assets to work, I removed the entire system.

Fixes #71
This commit is contained in:
Sparky 2019-02-02 09:35:56 -05:00
parent 87645e7748
commit 1c523fc4f0
21 changed files with 10 additions and 577 deletions

View file

@ -235,15 +235,6 @@ define(['appSettings', 'events'], function (appsettings, events) {
return this.get('appTheme', false) || UserSettings.defaults.theme;
};
UserSettings.prototype.enableSeasonalThemes = function (val) {
if (val != null) {
return this.set('enableSeasonalThemes', val, false);
}
return this.get('enableSeasonalThemes', false) !== 'false';
};
UserSettings.prototype.screensaver = function (val) {
if (val != null) {
@ -321,4 +312,4 @@ define(['appSettings', 'events'], function (appsettings, events) {
};
return UserSettings;
});
});