Cosmetic reformatting of multiple jsx files

Этот коммит содержится в:
Reed Garmsen
2015-08-31 09:35:31 -07:00
родитель 5b81125e4d
Коммит e2a24f40b7
24 изменённых файлов: 1326 добавлений и 699 удалений

Просмотреть файл

@@ -8,23 +8,21 @@ var Constants = require('../utils/constants.jsx');
var PayloadSources = Constants.PayloadSources;
var AppDispatcher = assign(new Dispatcher(), {
handleServerAction: function performServerAction(action) {
var payload = {
source: PayloadSources.SERVER_ACTION,
action: action
};
this.dispatch(payload);
},
handleServerAction: function(action) {
var payload = {
source: PayloadSources.SERVER_ACTION,
action: action
};
this.dispatch(payload);
},
handleViewAction: function(action) {
var payload = {
source: PayloadSources.VIEW_ACTION,
action: action
};
this.dispatch(payload);
}
handleViewAction: function performViewAction(action) {
var payload = {
source: PayloadSources.VIEW_ACTION,
action: action
};
this.dispatch(payload);
}
});
module.exports = AppDispatcher;