-
Notifications
You must be signed in to change notification settings - Fork 0
/
Global variables.js
36 lines (32 loc) · 1.04 KB
/
Global variables.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
var _ = Underscore.load();
var GLOBAL = {
DAY: 24 * 60 * 60 * 1000,
WEEK: 7 * 24 * 60 * 60 * 1000,
itemTitles: {
organizer: "Name",
organizerEmail: "Email",
name: "Event Name",
start: "Event Start",
end: "Event End",
recurrenceBool: "Is this a recurring event?",
recurrenceType: "Explain the nature of recurrence",
monthRecurrence: "For monthly events, which day of the month would you like to repeat your event?",
description: "Event Description",
facilitiesBool: "Will you be using any of the facilities in the Rec Room?",
facilitiesDescription: "If answered yes above, explain how and what facilities you will be using?"
},
dayMap: {
Sunday: 0,
Monday: 1,
Tuesday: 2,
Wednesday: 3,
Thursday: 4,
Friday: 5,
Saturday: 6
},
RECURRENCE: {
option1: "Weekly (Same day every week)",
option2: "Biweekly (Same day every two weeks)",
option3: "Monthly"
}
}