Skip to content

Commit

Permalink
first release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas committed Nov 24, 2016
1 parent 8ffddd7 commit de6260d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ Usage
Type:
`npm install`
`npm start`
or
`http-server .`

Development
-----------
Expand Down
10 changes: 3 additions & 7 deletions dist/js/client.min.js
Original file line number Diff line number Diff line change
Expand Up @@ -9682,7 +9682,8 @@
return React.createElement(_AppBar2.default, {
onTitleTouchTap: this.handleTitleTouchTap,
onLeftIconButtonTouchTap: this.handleLeftIconButtonTouchTap,
title: 'Project Portfolio'
title: 'Project Portfolio',
showMenuIconButton: false
});
}
});
Expand Down Expand Up @@ -15087,7 +15088,7 @@
render: function render() {
var _this3 = this;

console.log('project visible', this.props.visible !== false);
console.log('project visible', this.props.visible);

var technologies = [];
for (var i = 0, numrows = this.props.attrs.technology.length; i < numrows; i++) {
Expand Down Expand Up @@ -15146,11 +15147,6 @@
null,
this.props.attrs.title
),
React.createElement(
'div',
null,
this.props.attrs.idtype
),
React.createElement('div', { className: 'descr', dangerouslySetInnerHTML: { __html: this.props.attrs.description } }),
this.props.attrs.imgs && this.props.attrs.imgs.length > 0 ? React.createElement(
'div',
Expand Down
1 change: 1 addition & 0 deletions src/js/Components/NavBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ let NavBar = React.createClass({
onTitleTouchTap={this.handleTitleTouchTap}
onLeftIconButtonTouchTap={this.handleLeftIconButtonTouchTap}
title="Project Portfolio"
showMenuIconButton={false}
/>
);
}
Expand Down
4 changes: 1 addition & 3 deletions src/js/Components/Project.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var Project = React.createClass({

render: function() {

console.log('project visible', this.props.visible !== false);
console.log('project visible', this.props.visible);

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

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

<div>{this.props.attrs.idtype}</div>

<div class="descr" dangerouslySetInnerHTML={{__html: this.props.attrs.description}}></div>

{this.props.attrs.imgs && this.props.attrs.imgs.length > 0 ?
Expand Down

0 comments on commit de6260d

Please sign in to comment.