angular-parse-wrapper
angular-parse-wrapper copied to clipboard
parsePromise.always is not a function
I am running a simple function from docs:
ngParse.User.logIn($scope.loginEmail, $scope.loginPassword, {
success: function (user) {
// Do stuff after successful login.
},
error: function (user, error) {
// The login failed. Check error to see why.
}
});
It returns me the error that parsePromise.always is not a function.
How can I solve it?