We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 084f3fc commit d12ed39Copy full SHA for d12ed39
preload.js
@@ -202,6 +202,9 @@ ipc.on('get-theme-setting', () => {
202
ipc.send('get-success-theme-setting', theme);
203
});
204
205
+// Assume we are online until we are told otherwise (needed for restore from seed to work)
206
+window.isOnline = true;
207
+
208
window.getSettingValue = (settingID, comparisonValue = null) => {
209
// Comparison value allows you to pull boolean values from any type.
210
// Eg. window.getSettingValue('theme', 'classic-dark')
0 commit comments