-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrowser.html
51 lines (37 loc) · 888 Bytes
/
browser.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<html>
<head>
<title>Git history spike</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="src/github.js"></script>
<script type="text/javascript">
<!--
$(document).ready(function() {
createApplication().start();
});
-->
</script>
<style type="text/css">
<!--
.header {
background-color: #FFCC33;
}
.add {
background-color: #adff2f;
}
.remove {
background-color: #FFDDDD;
}
.line {
margin: 0 0 0 40px; /*--Left Margin--*/
font-size: 12px;
width: 600px;
}
-->
</style>
</head>
<body>
<div id="msgid">
Commits
</div>
</body>
</html>