default-verhalten geflickt
This commit is contained in:
parent
a9ee9ec62c
commit
9391ab119a
1 changed files with 3 additions and 3 deletions
6
uhr.js
6
uhr.js
|
@ -201,7 +201,7 @@ Uhr.prototype.initToggleSwitch = function(defaultValue, overrideCookie) {
|
|||
uhr.toggle();
|
||||
});
|
||||
var status = $.cookie('status' + this.id);
|
||||
if (overrideCookie && (defaultValue != undefined)) {
|
||||
if (status == undefined || (overrideCookie && (defaultValue != undefined))) {
|
||||
status = defaultValue;
|
||||
}
|
||||
if (status == undefined || status == 'undefined') {
|
||||
|
@ -221,7 +221,7 @@ Uhr.prototype.initLayoutSwitch = function(defaultValue, overrideCookie) {
|
|||
uhr.setLayout(this.value);
|
||||
});
|
||||
var selectedLayout = $.cookie('layout' + this.id);
|
||||
if (overrideCookie && (defaultValue != undefined)) {
|
||||
if (selectedLayout == undefined || (overrideCookie && (defaultValue != undefined))) {
|
||||
selectedLayout = defaultValue;
|
||||
}
|
||||
if (selectedLayout == undefined || selectedLayout == 'undefined') {
|
||||
|
@ -236,7 +236,7 @@ Uhr.prototype.initThemeSwitch = function(defaultValue, overrideCookie) {
|
|||
uhr.setTheme(this.value);
|
||||
});
|
||||
var selectedTheme = $.cookie('theme' + this.id);
|
||||
if (overrideCookie && (defaultValue != undefined)) {
|
||||
if (selectedTheme == undefined || (overrideCookie && (defaultValue != undefined))) {
|
||||
selectedTheme = defaultValue;
|
||||
}
|
||||
if (selectedTheme == undefined || selectedTheme == 'undefined') {
|
||||
|
|
Loading…
Reference in a new issue