mirror of
https://github.com/lospec/pixel-editor.git
synced 2023-08-10 21:12:51 +03:00
4457d2178c
Got rid of the "on" files, refactored the rest of the code to use the functions declared in Input.js
50 lines
1.6 KiB
JavaScript
50 lines
1.6 KiB
JavaScript
var settings;
|
|
|
|
if (!Cookies.enabled) {
|
|
document.getElementById('cookies-disabled-warning').style.display = 'block';
|
|
}
|
|
|
|
//try to load settings from cookie
|
|
var settingsFromCookie = Cookies.get('pixelEditorSettings');
|
|
if(!settingsFromCookie) {
|
|
console.log('settings cookie not found');
|
|
settings = {
|
|
switchToChangedColor: true,
|
|
enableDynamicCursorOutline: true, //unused - performance
|
|
enableBrushPreview: true, //unused - performance
|
|
enableEyedropperPreview: true, //unused - performance
|
|
numberOfHistoryStates: 20,
|
|
maxColorsOnImportedImage: 128,
|
|
pixelGridColour: '#000000'
|
|
};
|
|
}
|
|
else{
|
|
console.log('settings cookie found');
|
|
console.log(settingsFromCookie);
|
|
var settings = JSON.parse(settingsFromCookie);
|
|
}
|
|
console.log(settings);
|
|
|
|
//on clicking the save button in the settings dialog
|
|
Input.on('click', 'save-settings', saveSettings);
|
|
|
|
function saveSettings() {
|
|
//check if values are valid
|
|
if (isNaN(Util.getValue('setting-numberOfHistoryStates'))) {
|
|
alert('Invalid value for numberOfHistoryStates');
|
|
return;
|
|
}
|
|
|
|
//save new settings to settings object
|
|
settings.numberOfHistoryStates = Util.getValue('setting-numberOfHistoryStates');
|
|
settings.pixelGridColour = Util.getValue('setting-pixelGridColour');
|
|
// Filling pixel grid again if colour changed
|
|
fillPixelGrid();
|
|
|
|
//save settings object to cookie
|
|
var cookieValue = JSON.stringify(settings);
|
|
Cookies.set('pixelEditorSettings', cookieValue, { expires: Infinity });
|
|
|
|
//close window
|
|
closeDialogue();
|
|
} |