Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Edited the README.md Then users know they cant run this on windows operating system #41

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ ChainKeeper is a web application to explore and analyze block-chain data for use

### Installation

- Can be used only in Mac OS and Ubuntu because BlockSci is not supported in Windows

```sh
$ cd ChainKeeper
$ npm install
Expand Down
2 changes: 1 addition & 1 deletion chainkeeper_app/src/components/BlockPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class BlockPage extends Component {

componentDidMount() {
this.setState({ isLoading: true });
let openVal = parseInt(this.props.match.params.id);
let openVal = parseInt(this.props.match.params.id,10);

fetch("http://192.248.22.171:8080/blocksci/api/v5/block/"+openVal)
.then(response => response.json())
Expand Down
2 changes: 1 addition & 1 deletion chainkeeper_app/src/components/LoginwithGoogle.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class LoginwithGoogle extends Component {
};
return (
<div>
<img className="google_login" src={require('../public/images/gmail_login.png')} style={{width:"200px"}} onClick={() => imageClick()} />
<img className="google_login" alt = "google login"src={require('../public/images/gmail_login.png')} style={{width:"200px"}} onClick={() => imageClick()} />
</div>
);
}
Expand Down
6 changes: 2 additions & 4 deletions chainkeeper_app/src/components/Navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ import { withRouter } from 'react-router-dom';


class NavigationComp extends Component {
constructor(props) {
super(props);
}

getValueFromUser = (event) => {
if(event) event.preventDefault();
let path;
Expand Down Expand Up @@ -77,7 +75,7 @@ class NavigationComp extends Component {
<li className="nav-item dropdown">
<AuthUserContext.Consumer>
{authUser =>
<a style={{color: "#ffffff"}} className="nav-link dropdown-toggle" href="#"
<a style={{color: "#ffffff"}} className="nav-link dropdown-toggle" href={null}
id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
<i className="fa fa-user" aria-hidden="true"/> {authUser.email}
Expand Down
10 changes: 5 additions & 5 deletions chainkeeper_app/src/public/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ a:hover {
color: -webkit-linear-gradient(left, #21d4fd, #b721ff);
color: -o-linear-gradient(left, #21d4fd, #b721ff);
color: -moz-linear-gradient(left, #21d4fd, #b721ff);
color: linear-gradient(left, #21d4fd, #b721ff);
color: linear-gradient(to right, #21d4fd, #b721ff);
}

/*---------------------------------------------*/
Expand Down Expand Up @@ -296,7 +296,7 @@ iframe {
background: -webkit-linear-gradient(left, #21d4fd, #b721ff);
background: -o-linear-gradient(left, #21d4fd, #b721ff);
background: -moz-linear-gradient(left, #21d4fd, #b721ff);
background: linear-gradient(left, #21d4fd, #b721ff);
background: linear-gradient(to right, #21d4fd, #b721ff);
}

.focus-input100::after {
Expand Down Expand Up @@ -363,15 +363,15 @@ iframe {
color: -webkit-linear-gradient(left, #21d4fd, #b721ff);
color: -o-linear-gradient(left, #21d4fd, #b721ff);
color: -moz-linear-gradient(left, #21d4fd, #b721ff);
color: linear-gradient(left, #21d4fd, #b721ff);
color: linear-gradient(to right, #21d4fd, #b721ff);
}

.btn-show-pass.active {
color: #6a7dfe;
color: -webkit-linear-gradient(left, #21d4fd, #b721ff);
color: -o-linear-gradient(left, #21d4fd, #b721ff);
color: -moz-linear-gradient(left, #21d4fd, #b721ff);
color: linear-gradient(left, #21d4fd, #b721ff);
color: linear-gradient(to right, #21d4fd, #b721ff);
}


Expand Down Expand Up @@ -408,7 +408,7 @@ iframe {
background: -webkit-linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
background: -o-linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
background: -moz-linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
background: linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
background: linear-gradient(to left, #21d4fd, #b721ff, #21d4fd, #b721ff);
top: 0;
left: -100%;

Expand Down