1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| ({
| doInit : function(component) {
| // Hardcoding images in this demo component
| component.set("v.slides", [
| 'https://s3-us-west-1.amazonaws.com/sfdc-demo/houses/living_room.jpg',
| 'https://s3-us-west-1.amazonaws.com/sfdc-demo/houses/eatinkitchen.jpg',
| 'https://s3-us-west-1.amazonaws.com/sfdc-demo/houses/kitchen.jpg'
| ]);
| },
|
| fullScreen : function(component) {
| component.set("v.fullScreen", true);
| },
|
| closeDialog : function(component) {
| component.set("v.fullScreen", false);
| }
|
| })
|
|