-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.js
More file actions
95 lines (86 loc) · 3.05 KB
/
app.js
File metadata and controls
95 lines (86 loc) · 3.05 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
/**
* Created by hoangnn on 29/10/2015.
*/
(function () {
var app = angular.module('Store', []);
app.controller('StoreController', function () {
this.products = products;
});
app.controller('PanelController', function () {
this.tab = 'description';
this.setTab = function (tab) {
this.tab = tab;
};
this.isSelected = function (tab) {
return this.tab === tab;
}
});
app.controller("ReviewController", function () {
this.review = {};
this.addReview = function (product) {
product.reviews.push(this.review);
};
});
var products = [
{
name: 'Apple iPad Air 2 Wifi/4G 16G',
price: 499,
description: 'Một bước ngoặt trong thiết kế của Apple vừa tinh tế, vừa sang trọng và thời thượng và những cải tiến đáng giá. Apple iPad Air 2 ra mắt là chiếc máy tính bảng 9.7 inch mỏng và nhẹ nhất hiện nay',
inStock: true,
images: [
{
full: "images/ipad.png",
thumb: "images/ipad.png"
},
{
full: "images/ipad.png",
thumb: "images/ipad.png"
}
],
reviews: [
{
stars: 5,
body: "I love this product!",
author: "hoangn@codeaholicguy.com"
},
{
stars: 1,
body: "This product sucks",
author: "bob@hater.com"
}
]
},
{
name: 'Apple iPad Air 2 Wifi/4G 64G',
price: 599,
description: 'Một bước ngoặt trong thiết kế của Apple vừa tinh tế, vừa sang trọng và thời thượng và những cải tiến đáng giá. Apple iPad Air 2 ra mắt là chiếc máy tính bảng 9.7 inch mỏng và nhẹ nhất hiện nay',
inStock: true,
images: [
{
full: "images/ipad.png",
thumb: "images/ipad.png"
},
{
full: "images/ipad.png",
thumb: "images/ipad.png"
}
]
},
{
name: 'Apple iPad Air 2 Wifi/4G 128G',
price: 699,
description: 'Một bước ngoặt trong thiết kế của Apple vừa tinh tế, vừa sang trọng và thời thượng và những cải tiến đáng giá. Apple iPad Air 2 ra mắt là chiếc máy tính bảng 9.7 inch mỏng và nhẹ nhất hiện nay',
inStock: true,
images: [
{
full: "images/ipad.png",
thumb: "images/ipad.png"
},
{
full: "images/ipad.png",
thumb: "images/ipad.png"
}
]
}
]
})();