Skip to content

Instantly share code, notes, and snippets.

@kuc-arc-f
Created June 6, 2014 12:48
Show Gist options
  • Save kuc-arc-f/5ae39e451b3e6fe3859b to your computer and use it in GitHub Desktop.
Save kuc-arc-f/5ae39e451b3e6fe3859b to your computer and use it in GitHub Desktop.
function init_proc()
{
if (window.indexedDB || window.webkitIndexedDB || window.mozIndexedDB) {
console.log('OK: use indexedDB');
}else{
console.log('NG: use indexedDB');
}
var db= new DbHelper();
db.getInstance();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment