diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-02-03 22:05:41 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-02-03 22:05:41 +0100 |
commit | 6427c0c9bcb5ffa21a6c0adb9518e8864f37f27f (patch) | |
tree | 000ce3850cf755153e3e76ede00e600c290021ad /src/web | |
parent | Removed useless conf file. (diff) | |
download | newspipe-6427c0c9bcb5ffa21a6c0adb9518e8864f37f27f.tar.gz newspipe-6427c0c9bcb5ffa21a6c0adb9518e8864f37f27f.tar.bz2 newspipe-6427c0c9bcb5ffa21a6c0adb9518e8864f37f27f.zip |
Better if we don't leave JARR when clicking on this link.
Diffstat (limited to 'src/web')
-rw-r--r-- | src/web/js/components/MiddlePanel.react.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/js/components/MiddlePanel.react.js b/src/web/js/components/MiddlePanel.react.js index e251447e..92f04325 100644 --- a/src/web/js/components/MiddlePanel.react.js +++ b/src/web/js/components/MiddlePanel.react.js @@ -35,7 +35,7 @@ var TableLine = React.createClass({ icon = <Glyphicon glyph="ban-circle" />; } var title = (<a href={'/article/redirect/' + this.props.article_id} - onClick={this.openRedirectLink}> + onClick={this.openRedirectLink} target="_blank"> {icon} {this.props.feed_title} </a>); var read = (<Glyphicon glyph={this.state.read?"check":"unchecked"} |