Fixed a little mistake with user signup.

This commit is contained in:
Nick Winter 2014-03-31 14:02:15 -07:00
parent 382422829e
commit a319e183b6

View file

@ -14,7 +14,7 @@ module.exports.createUser = (userObject, failure=backboneFailure, nextURL=null)
if nextURL
window.location.href = nextURL
else
window.location.reload
window.location.reload()
})
module.exports.loginUser = (userObject, failure=genericFailure) ->