You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 25, 2022. It is now read-only.
Local Storage API allow to persist key-value pairs into the HTML5 Local Storage available in all modern Browsers.
The local storage content is persisted in the Browser across user's sessions; it can store up to 10 MB.
var KEY_SEARCHTEXT = "key.searchtext";
var searchText;
// save the search text in localStorage
plugins.webstorageLocalstorage.setItem(KEY_SEARCHTEXT, searchText);
// the saved search text can be retrieved during the next user's session
searchText = plugins.webstorageLocalstorage.getItem(KEY_SEARCHTEXT);