Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
Remove extra spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
sfeast committed Jul 1, 2014
1 parent 3038ca9 commit 91f0f4a
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions firebase-login.html
Original file line number Diff line number Diff line change
Expand Up @@ -191,35 +191,35 @@
}.bind(this));
},

changePassword: function(email, oldPassword, newPassword) {
this.auth.changePassword(email, oldPassword, newPassword, function(error, success) {
if (!error) {
this.fire('password-changed');
} else {
this.fire('error', {message: error});
}
}.bind(this));
},
changePassword: function(email, oldPassword, newPassword) {
this.auth.changePassword(email, oldPassword, newPassword, function(error, success) {
if (!error) {
this.fire('password-changed');
} else {
this.fire('error', {message: error});
}
}.bind(this));
},

sendPasswordResetEmail: function(email) {
this.auth.sendPasswordResetEmail(email, function(error, success) {
if (!error) {
this.fire('password-reset');
} else {
this.fire('error', {message: error});
}
}.bind(this));
},
sendPasswordResetEmail: function(email) {
this.auth.sendPasswordResetEmail(email, function(error, success) {
if (!error) {
this.fire('password-reset');
} else {
this.fire('error', {message: error});
}
}.bind(this));
},

removeUser: function(email, password) {
this.auth.removeUser(email, password, function(error, success) {
if (!error) {
this.fire('removed-user');
} else {
this.fire('error', {message: error});
}
}.bind(this));
}
removeUser: function(email, password) {
this.auth.removeUser(email, password, function(error, success) {
if (!error) {
this.fire('removed-user');
} else {
this.fire('error', {message: error});
}
}.bind(this));
}

});

Expand Down

0 comments on commit 91f0f4a

Please sign in to comment.