Created
November 25, 2011 10:28
-
-
Save jensarps/1393216 to your computer and use it in GitHub Desktop.
IDBWrapper tutorial, step 4
This file contains 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
var updatedDude = { | |
id: 1, // or whatever id our dude has | |
firstname: 'John', | |
lastname: 'Doe', | |
age: 53, // dude is now a year older | |
emails: [ | |
'[email protected]', | |
'[email protected]' | |
] | |
}; | |
var onsuccess = function(id){ | |
console.log('Yeah, dude updated! id still is: ' + id); | |
} | |
var onerror = function(error){ | |
console.log('Oh noes, sth went wrong!', error); | |
} | |
customers.put(updatedDude, onsuccess, onerror); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment