Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mstimberg committed Feb 28, 2024
1 parent d43fb76 commit 370b873
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ meetings.
The website is built with ["vanilla JS"](http://vanilla-js.com/) and uses the [cytoscape.js](https://js.cytoscape.org/)
library for graph visualisation. The full code runs in the browser, but in order to make it able to access the data, it
needs to run in a local webserver. You can either use such a webserver as provided by your IDE (e.g. the
[Live Server extension](https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer) for VS Code,
[Live Server extension](https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer)) for VS Code,
or use Python's built-in webserver:
```
python -m http.server
Expand Down
2 changes: 1 addition & 1 deletion graph.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ Promise.all([
.then(function(res) {
return res.json();
}),
fetch('data/simtools.json')
fetch('simtools/simtools.json')
.then(function(res) {
return res.json();
})
Expand Down

0 comments on commit 370b873

Please sign in to comment.