forked from veniversum/git-visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 1.5 KB
/
index.html
File metadata and controls
37 lines (34 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<head>
<title>Github Visualizer</title>
<link rel="shortcut icon" type="image/png" href="images/favicon.png" />
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="https://code.jquery.com/jquery-2.2.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.tipsy/1.0.2/jquery.tipsy.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/jquery.tipsy/1.0.2/jquery.tipsy.css" rel="stylesheet" type="text/css" />
<link href="css/main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="graph"></div>
<section id="header">
<header>
<img id="logo" src="images/logo.png" />
<p>Enter a GitHub user/organization name and repository and hit Go! (<a href="?owner=atom&repo=atom">Try atom/atom</a>) </br>
Scroll to zoom, click and drag to pan. </br>
<i style="color:#f00">Warning:</i> Large repos can get laggy
</p>
</header>
</section>
<div id="prompt">
<form class="start" id="signup-form" action="javascript:getRepo()">
<input type="text" name="owner" id="owner" placeholder="User/Organization" />
<input type="text" name="repo" id="repo" placeholder="Repository" />
<input type="submit" value="Go!" />
</form>
</div>
<a class="github-fork-ribbon left-bottom fixed" href="https://github.com/veniversum/git-visualizer" title="Fork me on GitHub">Fork me on GitHub</a>
<script src="js/github.js" onload="checkQuery();"></script>
</body>
</html>