-
Notifications
You must be signed in to change notification settings - Fork 4
/
demo.html
33 lines (30 loc) · 1.04 KB
/
demo.html
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>libgithub demo</title>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/humane.js"></script>
<script type="text/javascript" src="js/date.js"></script>
<script type="text/javascript" src="js/md5.js"></script>
<script type="text/javascript" src="libgithub.js"></script>
<link type="text/css" rel="stylesheet" href="css/libgithub.css" />
</head>
<body>
<script type="text/javascript">
$(window).load(function () {
var a = new libgithub.Badge('msparks', 'irssi', 'master');
a.targetIs('#commit-irssi');
var b = new libgithub.Badge('msparks', 'alphasign', 'master');
b.targetIs('#commit-alphasign');
var al = new libgithub.ActivityLine('msparks', 'libgithub');
al.targetIs('#last_activity');
});
</script>
<div id="commit-irssi"></div>
<hr />
<div id="commit-alphasign"></div>
<hr />
<div id="last_activity"></div>
</body>
</html>