-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpseudo-code.txt
More file actions
36 lines (22 loc) · 772 Bytes
/
pseudo-code.txt
File metadata and controls
36 lines (22 loc) · 772 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
31
32
33
34
35
36
creating a mobile app that allow people to create appts that get added to a list.
////events.js////
//logic to add appointments
$(etc.).click (function {
var...
list.add(appt-data)
}
$(etc.) function {
logic to remove appointments
)};
////add-remove.js////
var list = []
add: function ()
remove: function ()
////render.js////
-home screen (search, displays stored appts)
-new appt. (inputs for title, time, where, address)
-appt details screen (edit button, back button to list view, details of appointment, map, weather)
-edit (able to change all input fields, delete appt. with confirmation of delete)
on the click of the plus button...
the JS toggles to "hide" for the current appointments
the JS toggles "show" for the new-appointments