-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
26 lines (22 loc) · 695 Bytes
/
README
File metadata and controls
26 lines (22 loc) · 695 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
This is my first jquery mobile project that implements a simple phonelist for a mobile device.
A phonelist.json is required in the root of the project. It should contain phone numbers using the following structure:
{
"category": [
{
"shortName": "short name of a user",
"name": "long name of a user",
"firstNumber": "number",
"secondNumber": "number"
},
...
],
"another category": [
{
"shortName": "short name of another user",
"name": "long name of another user",
"firstNumber": "number",
"secondNumber": "number"
},
...
]
}