From bbea64d29fd5601832b54c84a00dfe57cd7ef65f Mon Sep 17 00:00:00 2001 From: Steven Hugg Date: Fri, 27 Mar 2020 13:59:03 -0500 Subject: [PATCH] note that Safari/iOS removes local data after 7 days --- src/ide/ui.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ide/ui.ts b/src/ide/ui.ts index 8b6200c7..c4fae8e0 100644 --- a/src/ide/ui.ts +++ b/src/ide/ui.ts @@ -1681,8 +1681,8 @@ function showWelcomeMessage() { { element: "#workspace", title: "Code Editor", - content: is_vcs ? "Type your 6502 assembly code into the editor, and it'll be assembled in real-time. All changes are saved to browser local storage." - : "Type your source code into the editor, and it'll be compiled in real-time. All changes are saved to browser local storage." + content: is_vcs ? "Type your 6502 assembly code into the editor, and it'll be assembled in real-time. All changes are saved to browser local storage, except on Safari or iOS." + : "Type your source code into the editor, and it'll be compiled in real-time. All changes are saved to browser local storage, except on Safari or iOS." }, { element: "#emulator",