forked from gdiannarbor/gdiannarbor.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgs.html
More file actions
30 lines (27 loc) · 972 Bytes
/
gs.html
File metadata and controls
30 lines (27 loc) · 972 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>GDI Ann Arbor</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="js/live-tweets.js"></script>
<link href="http://fonts.googleapis.com/css?family=Droid+Sans:regular,bold" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.8.2r1/build/reset/reset-min.css">
<link rel="stylesheet" type="text/css" href="css/live-tweets.css">
<script>
$(document).ready(function () {
var initTweets = function() {
window.location.reload();
}
$("#liveTweets").liveTweets({
query: "#got",
limit: 10,
delay: 10
});
setTimeout(initTweets, 200000);
});
</script>
</head>
<body>
<div id="liveTweets"></div>
</body>
</html>