Feature/#32 option menu #112

Merged
Serraniel merged 31 commits from feature/#32-option-menu into develop 2020-11-09 17:28:43 +01:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 483ea7f96e - Show all commits

View file

@ -61,7 +61,7 @@ class StorageProviderFirefox {
}
}
let __storageProvieder = undefined;
let __storageProvieder;
function createStorageProvider() {
// chrome based browser

View file

@ -25,7 +25,7 @@ class Configuration {
}
else {
// OOOPS // currently all settings are default true. This isn´t a problem but there should be much better soloutions after migration to typescript....
Serraniel commented 2020-11-08 13:20:31 +01:00 (Migrated from github.com)
Review

This should be refactored and improved after #48 .

This should be refactored and improved after #48 .
let value = getGlobalStorageProvider().getData(key, true, value => {
getGlobalStorageProvider().getData(key, true, value => {
this.settingsCache.set(key, value);
callback(value);
});
@ -33,7 +33,7 @@ class Configuration {
}
}
let __globalConfig = undefined;
let __globalConfig;
export function getGlobalConfiguration() {
if (!assigned(__globalConfig)) {