Skip to content

Commit

Permalink
Resolves googlearchive#42
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan committed Feb 23, 2015
1 parent 064dfad commit 6b31239
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions firebase-login.html
Original file line number Diff line number Diff line change
Expand Up @@ -294,9 +294,9 @@
* @param {string} password
*/
createUser: function(email, password) {
this.ref.createUser({email: email, password: password}, function(error) {
this.ref.createUser({email: email, password: password}, function(error, userData) {
if (!error) {
this.fire('user-created');
this.fire('user-created', userData);
} else {
this.fire('error', error);
}
Expand Down

0 comments on commit 6b31239

Please sign in to comment.