-
Notifications
You must be signed in to change notification settings - Fork 0
/
listingFactory.js
37 lines (36 loc) · 1.21 KB
/
listingFactory.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
37
angular.module('listings').factory('Listings', function() {
var listings = {
entries: [{
"code": "CGT-2012",
"name": "Luis Angel",
"whatsapp": "55 3979 3727 ",
"twitter": "@luisangelmaciel",
"email": "luisangelmaciel@gmail.com",
"cumple": "2 julio 1987",
"edad": "30",
"infoExtra": "Hace viajes",
},
{
"code": "CGT-2012",
"name": "Luis Angel",
"whatsapp": "55 3979 3727 ",
"twitter": "@luisangelmaciel",
"email": "luisangelmaciel@gmail.com",
"cumple": "2 julio 1987",
"edad": "30",
"infoExtra": "Hace viajes",
},
{
"code": "CGT-2012",
"name": "Luis Angel",
"whatsapp": "55 3979 3727 ",
"twitter": "@luisangelmaciel",
"email": "luisangelmaciel@gmail.com",
"cumple": "2 julio 1987",
"edad": "30",
"infoExtra": "Hace viajes",
}
]
};
return listings.entries;
});