diff options
author | François Schmidts <francois.schmidts@gmail.com> | 2016-01-28 21:18:38 +0100 |
---|---|---|
committer | François Schmidts <francois.schmidts@gmail.com> | 2016-01-28 21:18:38 +0100 |
commit | 577b79d1d2a8d4de949ffc5f312cfb90bd97ed26 (patch) | |
tree | 6848abefc513bbbc83296214d9174bc0b28fff06 /src/web/js/components | |
parent | fixing menu folding (diff) | |
download | newspipe-577b79d1d2a8d4de949ffc5f312cfb90bd97ed26.tar.gz newspipe-577b79d1d2a8d4de949ffc5f312cfb90bd97ed26.tar.bz2 newspipe-577b79d1d2a8d4de949ffc5f312cfb90bd97ed26.zip |
slight redo of middle panel
Diffstat (limited to 'src/web/js/components')
-rw-r--r-- | src/web/js/components/MiddlePanel.react.js | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/src/web/js/components/MiddlePanel.react.js b/src/web/js/components/MiddlePanel.react.js index d2c4df5b..4fe14c09 100644 --- a/src/web/js/components/MiddlePanel.react.js +++ b/src/web/js/components/MiddlePanel.react.js @@ -35,20 +35,22 @@ var TableLine = React.createClass({ var liked = (<Glyphicon glyph={this.state.liked?"star":"star-empty"} onClick={this.toogleLike} />); return (<div className="list-group-item"> - <h4>{title}</h4> - {read} {liked} {this.props.title} + <h5><strong>{title}</strong></h5><div /> + <div>{read} {liked} {this.props.title}</div> </div> ); }, toogleRead: function() { - this.setState({read: !this.state.read}); - MiddlePanelActions.changeRead(this.props.category_id, - this.props.feed_id, this.props.article_id, !this.state.read); + this.setState({read: !this.state.read}, function() { + MiddlePanelActions.changeRead(this.props.category_id, + this.props.feed_id, this.props.article_id, this.state.read); + }.bind(this)); }, toogleLike: function() { - this.setState({liked: !this.state.liked}); - MiddlePanelActions.changeLike(this.props.category_id, - this.props.feed_id, this.props.article_id, !this.state.liked); + this.setState({liked: !this.state.liked}, function() { + MiddlePanelActions.changeLike(this.props.category_id, + this.props.feed_id, this.props.article_id, this.state.liked); + }.bind(this)); }, }); |