-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.js
86 lines (79 loc) · 1.67 KB
/
events.js
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/**
* events.js
*
* Project X
* 1.1.12
*
* Listing all events that have been added to Project X.
* (gets it through a json feed that dumps all of the google
* calendar's events)
*/
var allFeed =
{
url: 'http://www.hcs.harvard.edu/projectx/hidden/allEvents.php',
color: '#FF6600',
textColor: 'black',
type: 'POST',
error: function()
{
alert('fail status. sorry, man.');
},
};
var currentFeed = allFeed;
$(document).ready(function()
{
$('#calendar').fullCalendar(
{
// php projectx data
eventSources:
[
allFeed
/* {
url: 'http://www.hcs.harvard.edu/projectx/hidden/allEvents.php',
// url: 'http://www.hcs.harvard.edu/projectx/hidden/queryEvents.php/?squery=cambridge',
type: 'POST',
error: function()
{
alert('fail status. sorry, man.');
},
} */
]
/* extra stuff i don't really get..
eventClick: function(event)
{
// opens events in a popup window
window.open(event.url, 'gcalevent', 'width=700, height=600');
},
loading: function(bool)
{
if (bool)
{
$('#loading').show();
}
else
{
$('#loading').hide();
}
} */
});
});
function searchEvents()
{
var qString = document.qform.squery.value;
var tempFeed =
{
url: 'http://www.hcs.harvard.edu/projectx/hidden/queryEvents.php/',
type: 'GET',
data:
{
squery: qString
},
color: '#FF6600',
textColor: 'black'
};
$('#calendar').fullCalendar('removeEventSource', currentFeed);
$('#calendar').fullCalendar('addEventSource', tempFeed);
$('#calendar').fullCalendar('refetchEvents');
document.qform.squery.value = "";
currentFeed = tempFeed;
}