fixed problem with multiple carts and a whole load of problems with crazy delivery destination logic / if I didn't write it i would have thought it was written by a drug abuser during high

This commit is contained in:
Senad Uka
2015-03-14 08:17:06 +01:00
parent e7793f0884
commit 8815267a79
12 changed files with 195 additions and 25 deletions

View File

@@ -0,0 +1,11 @@
var AppDispatcher = require('../dispatcher/appDispatcher');
var InitializationConstants = require('../constants/initializationConstants');
var IntializationActions = {
initialize: function() {
AppDispatcher.handleAction({
actionType : InitializationConstants.INITIALIZE,
});
}
};
module.exports = IntializationActions;