Skip to content

Commit

Permalink
adds ability to send additional payment related data
Browse files Browse the repository at this point in the history
  • Loading branch information
amejiarosario committed Aug 5, 2015
1 parent 270747a commit b5904ac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/ngCart.js
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ angular.module('ngCart.fulfilment', [])

this.checkout = function(settings){
return $http.post(settings.url,
{data:ngCart.toObject()})
{ data: ngCart.toObject(), options: settings.options});
}
}])

Expand Down
2 changes: 1 addition & 1 deletion dist/ngCart.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/ngCart.fulfilment.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ angular.module('ngCart.fulfilment', [])

this.checkout = function(settings){
return $http.post(settings.url,
{data:ngCart.toObject()})
{ data: ngCart.toObject(), options: settings.options});
}
}])

Expand Down

0 comments on commit b5904ac

Please sign in to comment.