Hi all,
>From ubiquity 0.5 Author Tutorial, I could found some description
about Persistent Storage "Some commands may want to store data that
persist even after closing Firefox".
However, it seems that Bin doesn't support persist the data after
closing Firefox. Is it a clerical error on tutorial? or a feature
still under implementation?
What should I do for persist data even after closing firefox.
Thanks
Stanley
code snippet about persist data on ubiquity:
var list = Bin["test"]() || [];
list.push("abc");
Bin["test"](list);
Utils.log(Bin["test"]());
// first run
[ "abc" ]
// restart firefox, rerun it again
//Expect:
[ "abc", "abc" ]
// Actually
[ "abc" ]
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"ubiquity-firefox" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/ubiquity-firefox?hl=en
-~----------~----~----~----~------~----~------~--~---