diff options
author | François Schmidts <francois.schmidts@gmail.com> | 2016-02-02 23:05:16 +0100 |
---|---|---|
committer | François Schmidts <francois.schmidts@gmail.com> | 2016-02-02 23:07:11 +0100 |
commit | 9ad36d04c3a352afc6f9a1322c7401200332877a (patch) | |
tree | 6e12cf2b67b016aff38874c389b5bf8b5242749a /src/web/js/components/MiddlePanel.react.js | |
parent | displaying more informations on articles (diff) | |
download | newspipe-9ad36d04c3a352afc6f9a1322c7401200332877a.tar.gz newspipe-9ad36d04c3a352afc6f9a1322c7401200332877a.tar.bz2 newspipe-9ad36d04c3a352afc6f9a1322c7401200332877a.zip |
reload and fold all button
Diffstat (limited to 'src/web/js/components/MiddlePanel.react.js')
-rw-r--r-- | src/web/js/components/MiddlePanel.react.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/web/js/components/MiddlePanel.react.js b/src/web/js/components/MiddlePanel.react.js index eca56541..e251447e 100644 --- a/src/web/js/components/MiddlePanel.react.js +++ b/src/web/js/components/MiddlePanel.react.js @@ -158,31 +158,31 @@ var MiddlePanelFilter = React.createClass({ <ButtonGroup> <Button active={this.state.filter == "all"} title="Display all articles" - onMouseDown={this.setAllFilter} bsSize="small"> + onClick={this.setAllFilter} bsSize="small"> <Glyphicon glyph="menu-hamburger" /> </Button> <Button active={this.state.filter == "unread"} title="Display only unread article" - onMouseDown={this.setUnreadFilter} + onClick={this.setUnreadFilter} bsSize="small"> <Glyphicon glyph="unchecked" /> </Button> <Button active={this.state.filter == "liked"} title="Filter only liked articles" - onMouseDown={this.setLikedFilter} + onClick={this.setLikedFilter} bsSize="small"> <Glyphicon glyph="star" /> </Button> </ButtonGroup> <ButtonGroup> - <Button onMouseDown={this.toogleSearch} + <Button onClick={this.toogleSearch} title="Search through displayed articles" bsSize="small"> <Glyphicon glyph="search" /> </Button> </ButtonGroup> <ButtonGroup> - <Button onMouseDown={MiddlePanelActions.markAllAsRead} + <Button onClick={MiddlePanelActions.markAllAsRead} title="Mark all displayed article as read" bsSize="small"> <Glyphicon glyph="trash" /> |