-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproperties.js
More file actions
72 lines (71 loc) · 1.78 KB
/
properties.js
File metadata and controls
72 lines (71 loc) · 1.78 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
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
var maclab = {
room_name: "SDMS Lab 021",
type: "seatmap",
slideInfo: [
{
mode: 'signin',
id: 'sid',
type: 'textBox',
lastSlide: true,
directions: "Type your student ID and click Go"
},
{
mode: 'signout',
id: 'chooseSeat',
type: 'chooseSeat',
lastSlide: false,
directions: "Click on your name to sign out"
},
{
mode: 'signout',
id: 'destination',
type: 'dropDown',
lastSlide: true,
directions: "Choose your destination, then click Go",
options: ["cafeteria", "classroom", "mediacenter", "office", "nurse", "locker", "bathroom", "water"]
}
]
};
var whsmc = {
room_name: "WHS Media Center",
type: "namelist",
slideInfo: [
{
mode: 'signin',
id: 'sid',
type: 'textBox',
lastSlide: false,
directions: "Type your student ID."
},
{
mode: 'signin',
id: 'assignment',
type: 'dropDown',
lastSlide: false,
directions: "Choose assignment or purpose.",
options: ["research", "independent-study", "homework-study", "nehs-writing-center", "work-study-volunteer", "check-out-book", "lunch-study", "other"]
},
{
mode: 'signin',
id: 'teacher',
type: 'textBox',
lastSlide: true,
directions: "Enter name of subject teacher that signed your pass."
},
{
mode: 'signout',
id: 'chooseSeat',
type: 'chooseSeat',
lastSlide: false,
directions: "Click on your name to sign out"
},
{
mode: 'signout',
id: 'destination',
type: 'dropDown',
lastSlide: true,
directions: "Choose your destination, then click Go",
options: ["cafeteria", "classroom", "mediacenter", "office", "nurse", "locker", "bathroom", "water"]
}
]
};