Skip to content

Commit de6260d

Browse files
author
Jonas
committed
first release
1 parent 8ffddd7 commit de6260d

4 files changed

Lines changed: 7 additions & 10 deletions

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ Usage
2525
Type:
2626
`npm install`
2727
`npm start`
28+
or
29+
`http-server .`
2830

2931
Development
3032
-----------

dist/js/client.min.js

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9682,7 +9682,8 @@
96829682
return React.createElement(_AppBar2.default, {
96839683
onTitleTouchTap: this.handleTitleTouchTap,
96849684
onLeftIconButtonTouchTap: this.handleLeftIconButtonTouchTap,
9685-
title: 'Project Portfolio'
9685+
title: 'Project Portfolio',
9686+
showMenuIconButton: false
96869687
});
96879688
}
96889689
});
@@ -15087,7 +15088,7 @@
1508715088
render: function render() {
1508815089
var _this3 = this;
1508915090

15090-
console.log('project visible', this.props.visible !== false);
15091+
console.log('project visible', this.props.visible);
1509115092

1509215093
var technologies = [];
1509315094
for (var i = 0, numrows = this.props.attrs.technology.length; i < numrows; i++) {
@@ -15146,11 +15147,6 @@
1514615147
null,
1514715148
this.props.attrs.title
1514815149
),
15149-
React.createElement(
15150-
'div',
15151-
null,
15152-
this.props.attrs.idtype
15153-
),
1515415150
React.createElement('div', { className: 'descr', dangerouslySetInnerHTML: { __html: this.props.attrs.description } }),
1515515151
this.props.attrs.imgs && this.props.attrs.imgs.length > 0 ? React.createElement(
1515615152
'div',

src/js/Components/NavBar.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ let NavBar = React.createClass({
2222
onTitleTouchTap={this.handleTitleTouchTap}
2323
onLeftIconButtonTouchTap={this.handleLeftIconButtonTouchTap}
2424
title="Project Portfolio"
25+
showMenuIconButton={false}
2526
/>
2627
);
2728
}

src/js/Components/Project.jsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ var Project = React.createClass({
2525

2626
render: function() {
2727

28-
console.log('project visible', this.props.visible !== false);
28+
console.log('project visible', this.props.visible);
2929

3030
let technologies = [];
3131
for (let i=0, numrows = this.props.attrs.technology.length; i < numrows; i++) {
@@ -75,8 +75,6 @@ var Project = React.createClass({
7575

7676
<h4>{this.props.attrs.title}</h4>
7777

78-
<div>{this.props.attrs.idtype}</div>
79-
8078
<div class="descr" dangerouslySetInnerHTML={{__html: this.props.attrs.description}}></div>
8179

8280
{this.props.attrs.imgs && this.props.attrs.imgs.length > 0 ?

0 commit comments

Comments
 (0)