Anybody solved the QUOTA_EXCEEDED_ERR bug?
It happens on the ipad. After a google researh it seems that local/
session Storage is responsible for that.
I thought i solved the issue using a patch like the one below, so
before setting any storage the classic way (setItem) i would first
detelete that same key
function setSessionkey(key, val)
{
sessionStorage.removeItem(key);
sessionStorage.setItem(key, val);
}
function setLocalkey(key, val)
{
localStorage.removeItem(key);
localStorage.setItem(key, val);
}
But, again the QUOTA_EXCEEDED_ERR lives.
Anyone?
--
You received this message because you are subscribed to the Google Groups
"iPhoneWebDev" 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/iphonewebdev?hl=en.