forked from evoluteur/evolutility-ui-jquery
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacts.data.js
More file actions
executable file
·176 lines (175 loc) · 4.17 KB
/
Copy pathcontacts.data.js
File metadata and controls
executable file
·176 lines (175 loc) · 4.17 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
var uiModels = uiModels || {};
uiModels.contact_data = [{
id: '1',
lastname: 'Smallwood',
firstname: 'Diane',
jobtitle: 'Director',
company: 'EasyDoesIt',
email: 'vsw@EasyDoesIt.com',
phone: '415 234 4323',
phonehome: '415 378 3577',
phonecell: '415 135 3454',
web: 'http://EasyDoesIt.com',
address1: '12, Liverpool Street',
city: 'San Francisco',
state: 'CA',
zip: '94123',
country: 'US',
category: '4'
}, {
id: '2',
lastname: 'Shackleford ',
firstname: 'Rusty ',
email: 'rustyshackleford@gmail.com',
address1: '123 Main Street',
city: 'Dallas',
state: 'TX',
country: 'US',
category: '3'
}, {
id: '3',
lastname: 'Inoue',
firstname: 'Akemi',
jobtitle: 'QA Engineer',
company: 'Testing evol-utility',
email: 'test@test.com',
phone: '423 233 3523',
phonehome: '423 523 4523',
address1: '5665 Poplar Street',
city: 'San Jose',
state: 'CA',
zip: '93112',
country: 'US',
category: '3'
}, {
id: '4',
lastname: 'Reina Moyano',
firstname: 'Sergio',
jobtitle: 'Mr',
company: 'Innova Creaciones',
email: 'sreina@innovacreaciones.es',
phone: '411 444 2222',
phonehome: '411 576 4566',
phonecell: '411 579 4566',
fax: '411 444 2224',
address1: '654 Union Street',
address2: '#203',
city: 'San Francisco',
state: 'CA',
zip: '94567',
country: 'US',
category: '3'
}, {
id: '5',
lastname: 'Paulus',
firstname: 'Henry',
company: 'TEST the TEST',
phone: '652 491 2345',
address1: '1234 That Street',
city: 'San Mateo',
state: 'CA',
zip: '94401',
country: 'US',
category: '2'
}, {
id: '6',
lastname: 'Dupond',
firstname: 'Patrick',
jobtitle: 'Sales Manager',
company: 'Au Bon Pain',
email: 'pdupond@aubonpain.fr',
phone: '45 456 414 45',
web: 'http://aubonpain.fr',
city: 'Paris',
state: '',
country: 'FR',
category: '1'
}, {
id: '7',
lastname: 'Giulieri',
firstname: 'Olivier',
company: 'Evolutility',
city: 'San Mateo',
state: '',
email: 'olivier@evolutility.org',
web: 'http://www.evol-utility.org'
}, {
id: '8',
lastname: 'Martin',
firstname: 'Mary',
jobtitle: 'President',
company: 'Acme Corp',
email: 'pm@acme.com',
phone: '444 580 7007',
phonehome: '449 512 0230',
phonecell: '589 499 2065',
address1: '123 Redville Lane',
city: 'Musnonville',
state: 'NH',
zip: '03434',
category: '1'
}, {
id: '9',
lastname: 'Munar',
firstname: 'Roman',
jobtitle: 'Mr',
company: 'Informatics',
email: 'romano@informatics.com',
phone: '322 234 5143',
phonehome: '322 784 3453',
phonecell: '322 538 2568',
fax: '322 234 5345',
web: 'http://roman.munar.com',
address1: 'Washington',
address2: 'Buendia',
city: 'Makati',
state: '',
zip: '1300',
country: 'PH',
category: '3'
}, {
id: '10',
lastname: 'Smith',
firstname: 'George',
company: 'Blabla',
email: 'george@blabla.com',
web: 'http://www.blabla.com',
phone: '415 123 1234',
phonecell: '415 789 4556',
address1: '768 5th Ave',
city: 'San Francisco',
state: 'CA',
zip: '93123',
country: 'US',
category: '1'
}, {
id: '11',
lastname: 'Kumar',
firstname: 'Madhukar',
jobtitle: 'CEO',
company: 'CoolWeb',
email: 'mkumar@coolweb.com',
web: 'http://www.coolweb.com',
phone: '7225 8252',
phonecell: '7325 8245',
address1: '434 Cool Place',
city: 'Bengaluru',
state: '',
country: 'IN',
category: '4'
}, {
id: '12',
lastname: 'Cheng',
firstname: 'Chris',
jobtitle: 'CTO',
company: 'MyGreatCorporation',
email: 'ccheng@MyGreatCorporation.com',
phonecell: '650 234 8245',
city: 'Sunnyvalle',
state: 'CA',
country: 'US',
category: '4'
}];
if(typeof module === "object" && typeof module.exports === "object"){
module.exports = uiModels.contact_data;
}