mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
35e2e83595
Conflicts: UI/Config.js
55 lines
1.2 KiB
JavaScript
55 lines
1.2 KiB
JavaScript
"use strict";
|
|
define(['app'], function () {
|
|
|
|
$.cookie.json = true;
|
|
|
|
NzbDrone.Config.SeriesViewStyle = function (value) {
|
|
var key = 'seriesViewStyle';
|
|
|
|
if (value !== undefined) {
|
|
NzbDrone.Config.SetValue(key, value);
|
|
}
|
|
|
|
else{
|
|
return NzbDrone.Config.GetValue(key, 1);
|
|
}
|
|
};
|
|
|
|
NzbDrone.Config.GetValue = function (key, defaultValue) {
|
|
var cookie = NzbDrone.Config.GetCookie();
|
|
|
|
if (!cookie) {
|
|
return defaultValue;
|
|
}
|
|
|
|
var value = cookie[key];
|
|
|
|
if (value === undefined) {
|
|
return defaultValue;
|
|
}
|
|
|
|
else {
|
|
return value;
|
|
}
|
|
};
|
|
|
|
NzbDrone.Config.SetValue = function (key, value) {
|
|
var cookie = NzbDrone.Config.GetCookie();
|
|
|
|
if (!cookie) {
|
|
cookie = {};
|
|
}
|
|
|
|
cookie[key] = value;
|
|
NzbDrone.Config.SetCookie(cookie);
|
|
};
|
|
|
|
NzbDrone.Config.GetCookie = function () {
|
|
return $.cookie('NzbDroneConfig');
|
|
};
|
|
|
|
NzbDrone.Config.SetCookie = function (cookie) {
|
|
$.cookie('NzbDroneConfig', cookie, { expires: 365, path: '/' });
|
|
};
|
|
});
|