From a16810570ea97fdfc20cc3d47f214ad6efd615b5 Mon Sep 17 00:00:00 2001 From: Raffaele Gaito Date: Fri, 16 Oct 2015 10:42:19 +0200 Subject: [PATCH] Fixed the "save" function The parameter "newOptions" actually should be "options" --- dist/parse-angular-sdk.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/parse-angular-sdk.js b/dist/parse-angular-sdk.js index e16d508..540b6d1 100644 --- a/dist/parse-angular-sdk.js +++ b/dist/parse-angular-sdk.js @@ -5233,7 +5233,7 @@ module.factory('ParseUser', function(ParseObject, ParseCore){ } options = options || {}; - return ParseObject.prototype.save.call(this, attrs, newOptions) + return ParseObject.prototype.save.call(this, attrs, options) .then(function(model){ model._handleSaveResult(false); return model; @@ -6199,4 +6199,4 @@ module.factory('ParseSDK', function( return ParseSDK; -}); \ No newline at end of file +});