Enable Local Storage in Ace Editor

218 views
Skip to first unread message

Safwan Rahman

unread,
Dec 23, 2014, 5:44:03 PM12/23/14
to ace-d...@googlegroups.com
Hi,
How to Enable Local Storage in Ace Editor so that while typing, all the data will be saved into users local storage?
Eagerly waiting to know.

Regards
Safwan

Harutyun Amirjanyan

unread,
Dec 23, 2014, 6:07:59 PM12/23/14
to ace-d...@googlegroups.com
Hi

 all the data will be saved into users local storage?
same as with textarea
editor.on("input", function() {
   localStorage.setItem("text", editor.getValue())
})

but doing this is a very bad idea, browsers do not handle localStorage well, 
and are stupidly writing data to the disk synchronously
making the site very slow, (unless you have ssd in which case they just unnecessarily wear it out)
Reply all
Reply to author
Forward
0 new messages