Created
June 6, 2014 12:48
-
-
Save kuc-arc-f/5ae39e451b3e6fe3859b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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