aboutsummaryrefslogtreecommitdiff
path: root/src/web/js
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-10 07:36:00 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-10 07:36:00 +0200
commit367c4d5aa807839b2106545cf8bc99a274e1a7f4 (patch)
tree265d4d97bdd7f03a0db0d6ff1aef66cc3661d353 /src/web/js
parentupdated platform URL (diff)
downloadnewspipe-367c4d5aa807839b2106545cf8bc99a274e1a7f4.tar.gz
newspipe-367c4d5aa807839b2106545cf8bc99a274e1a7f4.tar.bz2
newspipe-367c4d5aa807839b2106545cf8bc99a274e1a7f4.zip
new name: the last one.
Diffstat (limited to 'src/web/js')
-rw-r--r--src/web/js/app.js2
-rw-r--r--src/web/js/components/MainApp.react.js2
-rw-r--r--src/web/js/components/Navbar.react.js8
3 files changed, 6 insertions, 6 deletions
diff --git a/src/web/js/app.js b/src/web/js/app.js
index 00156670..7837e6ae 100644
--- a/src/web/js/app.js
+++ b/src/web/js/app.js
@@ -14,5 +14,5 @@ var MainApp = require('./components/MainApp.react');
ReactDOM.render(
<MainApp />,
- document.getElementById('jarrapp')
+ document.getElementById('newspipeapp')
);
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>
bgstack15