diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-10-10 07:36:00 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-10-10 07:36:00 +0200 |
commit | 367c4d5aa807839b2106545cf8bc99a274e1a7f4 (patch) | |
tree | 265d4d97bdd7f03a0db0d6ff1aef66cc3661d353 /src/web/js/components | |
parent | updated platform URL (diff) | |
download | newspipe-367c4d5aa807839b2106545cf8bc99a274e1a7f4.tar.gz newspipe-367c4d5aa807839b2106545cf8bc99a274e1a7f4.tar.bz2 newspipe-367c4d5aa807839b2106545cf8bc99a274e1a7f4.zip |
new name: the last one.
Diffstat (limited to 'src/web/js/components')
-rw-r--r-- | src/web/js/components/MainApp.react.js | 2 | ||||
-rw-r--r-- | src/web/js/components/Navbar.react.js | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/web/js/components/MainApp.react.js b/src/web/js/components/MainApp.react.js index 6e695b49..8105d32f 100644 --- a/src/web/js/components/MainApp.react.js +++ b/src/web/js/components/MainApp.react.js @@ -10,7 +10,7 @@ var RightPanel = require('./RightPanel.react'); var MainApp = React.createClass({ render: function() { return (<div> - <Grid fluid id="jarr-container"> + <Grid fluid id="newspipe-container"> <Menu /> <Col id="middle-panel" mdOffset={3} lgOffset={2} xs={12} sm={4} md={4} lg={4}> diff --git a/src/web/js/components/Navbar.react.js b/src/web/js/components/Navbar.react.js index 67e9ed56..ca2ff27b 100644 --- a/src/web/js/components/Navbar.react.js +++ b/src/web/js/components/Navbar.react.js @@ -70,22 +70,22 @@ JarrNavBar = React.createClass({ this.setState({showModal: true, modalType: 'addCategory'}); }, render: function() { - return (<Navbar fixedTop inverse id="jarrnav" fluid staticTop={true}> + return (<Navbar fixedTop inverse id="newspipenav" fluid staticTop={true}> {this.getModal()} <Navbar.Header> <Navbar.Brand> - <a href="/">JARR</a> + <a href="/">Newspipe</a> </Navbar.Brand> <Navbar.Toggle /> </Navbar.Header> <Navbar.Collapse> <Nav pullRight> {this.buttonFetch()} - <NavItem className="jarrnavitem" + <NavItem className="newspipenavitem" onClick={this.openAddFeed} href="#"> <Glyphicon glyph="plus-sign" />Add a new feed </NavItem> - <NavItem className="jarrnavitem" + <NavItem className="newspipenavitem" onClick={this.openAddCategory} href="#"> <Glyphicon glyph="plus-sign" />Add a new category </NavItem> |