|
|
|
@ -86,12 +86,16 @@ const Status = React.createClass({
|
|
|
|
|
this.props.dispatch(reblog(status));
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
handleReblogClick (status) {
|
|
|
|
|
handleReblogClick (status, e) {
|
|
|
|
|
if (status.get('reblogged')) {
|
|
|
|
|
this.props.dispatch(unreblog(status));
|
|
|
|
|
} else {
|
|
|
|
|
if (e.altKey) {
|
|
|
|
|
this.handleModalReblog(status);
|
|
|
|
|
} else {
|
|
|
|
|
this.props.dispatch(openModal('BOOST', { status, onReblog: this.handleModalReblog }));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
handleDeleteClick (status) {
|
|
|
|
|