Browse Source

Merge

master
kaos 9 years ago
parent
commit
6b94d9370c
1 changed files with 54 additions and 31 deletions
  1. +54
    -31
      preferences/preferences.js

+ 54
- 31
preferences/preferences.js View File

@ -4,18 +4,23 @@ var settings = [
name: "Long Post Visualization Mod Enabler",
description: "Enable long post mod?",
type: "checkbox",
defaultValue: "true"
},{
id: "long_post_visualization",
name: "Long Post Visualization",
description: "Select which way you prefer to display long posts",
type: "radio",
options: [ "Sidebar" ]
options: [ "Sidebar" ],
defaultValue: "Sidebar"
},{
id: "night_mode_enabler",
name: "Night Mode",
description: "Enable or disable night mode",
type: "checkbox"
type: "checkbox",
defaultValue: "true"
},{
id: "night_mode_starting_hour",
name: "Night Mode Starting Hour",
@ -24,7 +29,9 @@ var settings = [
options: {
min: "0",
max: "24"
}
},
defaultValue: "19"
},{
id: "night_mode_ending_hour",
name: "Night Mode Ending Hour",
@ -33,22 +40,26 @@ var settings = [
options: {
min: "0",
max: "24"
}
},
defaultValue: "7"
},{
id: "video_controls_enabler",
name: "Video controls",
description: "Show controls on gif posts to pause or seeking gif?",
type: "checkbox",
defaultValue: "true"
},{
id: "nsfw_enabler",
name: "Show NSFW",
description: "Show NSFW posts without login?",
type: "checkbox",
defaultValue: "true"
},{
id: "disable_wakeup_enabler",
name: "Wakeup pop-up",
description: "Disable wakeup pop-up?",
type: "checkbox",
defaultValue: "true"
}
];
@ -214,35 +225,47 @@ function loadSettings( ){
}
function updateSettings( storedSettings ){
var displayedSettings = document.getElementsByClassName('setting');
for (var i = displayedSettings.length - 1; i >= 0; i--) {
for( var settingId in storedSettings ){
settingId = String( settingId );
settingObject = document.getElementById( "setting_"+settingId );
if( typeof settingObject != "undefined" && settingObject != null){
type = settingObject.getAttribute('data-type');
switch( type ){
case ( "checkbox" ):
settingObject.childNodes[1].childNodes[0].checked = storedSettings[settingId];
break;
case ( "radio" ):
document.getElementById( "radio_"+ settingId +"_"+ storedSettings[settingId] ).checked = true;
break;
case "range":
settingObject.childNodes[1].childNodes[0].value = storedSettings[settingId];
updateRangeValueLabel( settingId , storedSettings[settingId] );
break;
case "text":
case "dropdown":
settingObject.childNodes[1].childNodes[0].value = storedSettings[settingId];
break;
}
var settingId = displayedSettings[i].id.split(/_(.+)?/)[1];
var settingObject = displayedSettings[i];
var type = settingObject.getAttribute('data-type');
var settingValue = settings[i].defaultValue;
if( storedSettings[ settingId ] ){
settingValue = storedSettings[settingId];
}
}
switch( type ){
case ( "checkbox" ):
settingObject.childNodes[1].childNodes[0].checked = settingValue;
break;
case ( "radio" ):
document.getElementById( "radio_"+ settingId +"_"+ settingValue ).checked = true;
break;
case "range":
settingObject.childNodes[1].childNodes[0].value = settingValue;
updateRangeValueLabel( settingId , settingValue );
break;
case "text":
case "dropdown":
settingObject.childNodes[1].childNodes[0].value = settingValue;
break;
}
};
// for( var settingId in storedSettings ){
// settingId = String( settingId );
// settingObject = document.getElementById( "setting_"+settingId );
// if( typeof settingObject != "undefined" && settingObject != null){
// }
// }
}


Loading…
Cancel
Save