Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: var db; var dbCreated = false; document.addEventListener("deviceready",onDeviceReady,false); function onDeviceReady() { //var fname = "null"; //var lname = "null"; // var age = "null"; var username = document.getElementById("UserName").value; //var password ="null"; db = window.openDatabase("RegistrationDB", "1.0", "Registration", 200000); if (dbCreated) console.log("DB created"); else db.transaction(populateDB,transaction_error,populateDB_success); } function populateDB(tx) { alert('in populateDB'); tx.ex Source: […]
↧