Add Recipient destination model and functionality on front end

This commit is contained in:
Adam
2016-01-12 09:01:46 +01:00
parent 794cc2ec69
commit 5ee38f6d9a
5 changed files with 130 additions and 35 deletions

View File

@@ -47,6 +47,13 @@ var CartActions = {
value: value
});
},
changeRecipientDestinationProperty: function(property, value) {
AppDispatcher.handleAction({
actionType: CartConstants.CHANGE_RECIPIENT_DESTINATION_PROPERTY,
propertyName: property,
value: value
});
},
confirmDelivery: function() {
AppDispatcher.handleAction({
actionType: CartConstants.CONFIRM_DELIVERY,
@@ -75,4 +82,4 @@ var CartActions = {
}
};
module.exports = CartActions;
module.exports = CartActions;