dpaola2 / Tou

Instant markdown editor for the web
12 stars 2 forks source link

Local Storage doesn't work in Safari 5 #7

Closed dpaola2 closed 12 years ago

dpaola2 commented 12 years ago

Permission dialog never appears, so there's no opportunity for the open button to appear.

JustinTulloss commented 12 years ago

The FileSystem API that lets us request as much room as we want will only work in Chrome. We can fall back on LocalStorage, which doesn't need permissions, but it limits us to some arbitrary amount of data. It's currently like 5MB for most browsers, which is a ton of markdown, so I don't think it's a big deal.

dpaola2 commented 12 years ago

Alright. I'll open a ticket to fall back onto LocalStorage.