We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert JS in utilities folder to services.
Couple of hints for localstorage.js - initialUse()
const currVersion = getDefaultData().settings.version; let skipValidation = false;
// Version 0.4.0 changes if (!skipValidation && currVersion == '0.4.0') { if (settings.statusOK && settings.data.version !== currVersion) { if (typeof settings.data.theme.template !== 'undefined') { saveLocalStorage(storageObject.setting, { ...settings.data, theme: settings.data.theme.template }); } } }
The text was updated successfully, but these errors were encountered:
openXapps
No branches or pull requests
Convert JS in utilities folder to services.
Couple of hints for localstorage.js - initialUse()
const currVersion = getDefaultData().settings.version;
let skipValidation = false;
// Version 0.4.0 changes
if (!skipValidation && currVersion == '0.4.0') {
if (settings.statusOK && settings.data.version !== currVersion) {
if (typeof settings.data.theme.template !== 'undefined') {
saveLocalStorage(storageObject.setting, { ...settings.data, theme: settings.data.theme.template });
}
}
}
The text was updated successfully, but these errors were encountered: