Moved show static methods out of modals and into EventHelpers

Этот коммит содержится в:
hmhealey
2015-11-23 10:52:52 -05:00
родитель 6016f91358
Коммит 388dc6c89c
11 изменённых файлов: 42 добавлений и 47 удалений

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

@@ -159,13 +159,4 @@ export default class DeletePostModal extends React.Component {
</Modal>
);
}
static show(post, commentCount) {
AppDispatcher.handleViewAction({
type: ActionTypes.TOGGLE_DELETE_POST_MODAL,
value: true,
post,
commentCount: commentCount || 0
});
}
}