Skip to content

Instantly share code, notes, and snippets.

@brachycera
Last active October 11, 2015 22:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brachycera/d10a1b5dc541e77850a7 to your computer and use it in GitHub Desktop.
Save brachycera/d10a1b5dc541e77850a7 to your computer and use it in GitHub Desktop.
Delete all local indexedDB
window.indexedDB.webkitGetDatabaseNames().onsuccess = function(sender,args){
var r = sender.target.result;
for(var i in r)
{
indexedDB.deleteDatabase(r[i]);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment