You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Opening this app in multiple tabs will have unpredictable results!
This is because every tab autosaves to the same location, so whichever one saves last is the one that sticks.
There's a storage event on the window specifically designed for this scenario. By reloading from save on this event we can at least sync the windows, however it will likely push a lot of noise into the undo stack if you do this frequently.
When a save is detected from another tab
automatically load that save (there should be no chance of data loss since both tabs would have started with the same save
ignore it (current behavior)
Popup warning the user the first time, and give them the option to load the save or ignore it
Also give users the option to disable autosave and use the beforeunload to warn users of any unsaved changes when they try to leave the page. Note that this is not reliable on mobile (the primary deploy target (see mdn)) so visiblityChange should be explored
The text was updated successfully, but these errors were encountered:
Version: b345ae1
The current "Whats New" section says
This is because every tab autosaves to the same location, so whichever one saves last is the one that sticks.
There's a storage event on the window specifically designed for this scenario. By reloading from save on this event we can at least sync the windows, however it will likely push a lot of noise into the undo stack if you do this frequently.
When a save is detected from another tab
The text was updated successfully, but these errors were encountered: