Spaces:
Running
Running
Mattthew
commited on
Commit
•
49cd608
1
Parent(s):
474474d
still can't save with chrome
Browse files
index.js
CHANGED
@@ -181,11 +181,11 @@ async function deleteItemBasedOnAccessType(item) {
|
|
181 |
function alertNoStoringAccess(wait) {
|
182 |
window.setTimeout(function(){
|
183 |
let msg = '';
|
184 |
-
msg += 'My apologies, your browser settings block the ability to save settings and favorites.
|
185 |
-
msg += '1. Try
|
186 |
-
msg += '2.
|
187 |
-
msg += '3.
|
188 |
-
msg += 'This app doesn\'t use cookies,
|
189 |
alert(msg);
|
190 |
},wait);
|
191 |
}
|
|
|
181 |
function alertNoStoringAccess(wait) {
|
182 |
window.setTimeout(function(){
|
183 |
let msg = '';
|
184 |
+
msg += 'My apologies, your browser settings block the ability to save settings and favorites. Suggestions:\n';
|
185 |
+
msg += '1. Try Firefox, Safari, or Edge\n'
|
186 |
+
msg += '2. Download the app to use offline\n';
|
187 |
+
msg += '3. On Chrome, enable 3rd-party cookies (not recommended)\n\n';
|
188 |
+
msg += 'This app doesn\'t use cookies, never sends data to any server, and saves all data locally. However, when you block 3rd-party cookies in Chrome, it also blocks local data storage. Chrome wants you to have a painful experience if you turn off 3rd-party cookies.';
|
189 |
alert(msg);
|
190 |
},wait);
|
191 |
}
|