Ejemplo n.º 1
0
 increaseItem: function (index) {
     AppDispatcher.handelViewAction({
         actionType: AppConstants.INCREASE_ITEM,
         index: index
     });
 }
Ejemplo n.º 2
0
 addItem: function (item) {
     AppDispatcher.handelViewAction({
         actionType: AppConstants.ADD_ITEM,
         item: item
     });
 },
Ejemplo n.º 3
0
 removeItem: function (index) {
     AppDispatcher.handelViewAction({
         actionType: AppConstants.REMOVE_ITEM,
         index: index
     });
 },