-
Notifications
You must be signed in to change notification settings - Fork 1
/
data.js
54 lines (50 loc) · 1.16 KB
/
data.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/**
* Created by kurt on 15-2-25.
*/
StockMarket.Company.FIXTURES = [
{
id:1,
companyName: "Apple",
openPrice: 45,
currentPrice: 0,
shareVolume: 0,
url:'./images/Apple-logo.jpg',
changeIcon: './images/noChange.png'
},
{
id:2,
companyName: "Facebook",
openPrice: 48,
currentPrice: 0,
shareVolume: 0,
url:'./images/Facebook-logo.png',
changeIcon: './images/noChange.png'
},
{
id:3,
companyName: "Microsoft",
openPrice:46.00,
currentPrice: 0,
shareVolume: 0,
url:'./images/MSFT-logo.png',
changeIcon: './images/noChange.png'
},
{
id: 4,
companyName: "Cisco Systems, Inc.",
openPrice: 27.41,
currentPrice: 0,
shareVolume: 0,
url:'./images/Cisco-logo.png',
changeIcon: './images/noChange.png'
},
{
id: 5,
companyName: "Intel Corporation",
openPrice: 33.93,
currentPrice: 0,
shareVolume: 0,
url:'./images/Intel-logo.png',
changeIcon: './images/noChange.png'
}
];