forked from bradoyler/GoogleCalReader-jquery-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefault.htm
More file actions
34 lines (27 loc) · 1.09 KB
/
Default.htm
File metadata and controls
34 lines (27 loc) · 1.09 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style type="text/css">
#eventtitle { font-weight:bold; }
#eventlist { list-style:none; }
#eventlist li { padding:3px; border-bottom:2px solid #eee;}
</style>
</head>
<script src="http://www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
google.load("gdata", "1.x", { packages: ["calendar"] });
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js" type="text/javascript"></script>
<script src="jquery.googlecalreader-1.0.js" type="text/javascript"></script>
<script type="text/javascript">
jQuery(function ($) {
$.gCalReader({
feedUri: 'http://www.google.com/calendar/feeds/w3gifts.com_4to3o9ftjdujjhkf47dp1r7ii8%40group.calendar.google.com/public/full',
maxresults: 30
});
});
</script>
<body>
</body>
</html>