Skip to content

Commit

Permalink
finalize name
Browse files Browse the repository at this point in the history
  • Loading branch information
fredhohman committed Mar 28, 2018
1 parent c3f4c17 commit 945229c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ html, body {
}

#header-title {
width: 150px;
width: 40px;
/* enforces cursor changes only on title */
cursor: pointer;
}
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<head>
<meta charset="UTF-8">
<title>Graph Playground</title>
<title>Atlas</title>

<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="css/style.css">
Expand All @@ -20,7 +20,7 @@
<header id="header">
<div id="header-title-wrapper">
<div>
<div id="header-title">Graph Playground</div>
<div id="header-title">Atlas</div>
</div>
</div>
<div id="graph-wrapper">
Expand Down
5 changes: 3 additions & 2 deletions js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import * as d3 from "d3";

// medium
// const dataDirName = "astroph"; // good
const dataDirName = 'glove' // good, labels
// const dataDirName = 'glove' // good, labels
// const dataDirName = 'com-amazon' // b
// const dataDirName = 'stackexchange' // b
// const dataDirName = 'word2vec-twitter' // kinda good, labels
Expand All @@ -40,6 +40,7 @@ const dataDirName = 'glove' // good, labels
// const dataDirName = 'google-movie' // average, labels
// const dataDirName = 'dblp' // b
// const dataDirName = 'patentcite' // good
const dataDirName = 'wikipedia-de' // good


export const dataPath = "data/" + dataDirName + "/";
Expand Down Expand Up @@ -84,4 +85,4 @@ d3.json(dataPathJSON, function(error, data) {
});

d3.select("#header-icon-link")
.attr("href", "https://github.com/fredhohman/graph-playground");
.attr("href", "https://github.com/fredhohman/atlas");
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "graph-playground",
"name": "atlas",
"version": "1.0.0",
"description": "",
"main": "index.js",
Expand All @@ -11,14 +11,14 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/fredhohman/graph-playground.git"
"url": "git+https://github.com/fredhohman/atlas.git"
},
"author": "Fred Hohman",
"license": "ISC",
"bugs": {
"url": "https://github.com/fredhohman/graph-playground/issues"
"url": "https://github.com/fredhohman/atlas/issues"
},
"homepage": "https://github.com/fredhohman/graph-playground#readme",
"homepage": "https://github.com/fredhohman/atlas#readme",
"dependencies": {
"d3": "^4.12.2",
"d3-contour": "^1.2.0",
Expand Down

0 comments on commit 945229c

Please sign in to comment.