had a problem / used a list of postal codes from internet / now I have two problems
This commit is contained in:
@@ -27,14 +27,22 @@ var CartActions = {
|
||||
dataLoaded: function() {
|
||||
AppDispatcher.handleAction({
|
||||
actionType: CartConstants.CART_DATA_LOADED
|
||||
});
|
||||
});
|
||||
},
|
||||
|
||||
saveCartStateForItem: function(itemId) {
|
||||
AppDispatcher.handleAction({
|
||||
actionType: CartConstants.SAVE_CART_STATE_FOR_ITEM,
|
||||
itemId: itemId
|
||||
});
|
||||
});
|
||||
},
|
||||
|
||||
changeDeliveryDestinationProperty: function(property, value) {
|
||||
AppDispatcher.handleAction({
|
||||
actionType: CartConstants.CHANGE_DELIVERY_DESTINATION_PROPERTY,
|
||||
property: property,
|
||||
value: value
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user