Does Fluid.app support LocalStorage?
It seems work during Fluid.app instance runs but key:value stored data
is disappeared after restart SSB.
Fluid returns true on following function and all other functions
related LocalStorage works same with installed Safari.app but data is
kept after quit SSB instances.
function is_localstorage(){
if (typeof(sessionStorage) == 'undefined' || sessionStorage == null
|| typeof(localStorage) == 'undefined' || localStorage == null)
{
return(false);
}
else
{
return(true);
}
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"fluidapp" 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/fluidapp?hl=en
-~----------~----~----~----~------~----~------~--~---