-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
103 lines (101 loc) · 3.15 KB
/
app.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
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
var app = angular.module('TravelPlansApplication', []);
app.controller('TravelPlansController', function($scope) {
$scope.locations = [
{
title: 'Hike the Inca Trail to Machu Picchu.',
country: 'Peru',
url: 'https://en.wikipedia.org/wiki/Inca_Trail_to_Machu_Picchu',
done: true
},
{
title: 'Walk the Great Wall.',
country: 'China',
url: 'https://en.wikipedia.org/wiki/Great_Wall_of_China',
done: true
},
{
title: 'Visit the Floating Mountains in Zhāngjiājiè.',
country: 'China',
url: 'https://en.wikipedia.org/wiki/Zhangjiajie_National_Forest_Park',
done: true
},
{
title: 'Hike the Fimmvörðuháls Trail.',
country: 'Iceland',
url: 'https://en.wikipedia.org/wiki/Fimmv%C3%B6r%C3%B0uh%C3%A1ls',
done: false
},
{
title: 'Experience Oktoberfest.',
country: 'Germany',
url: 'https://en.wikipedia.org/wiki/Oktoberfest',
done: false
},
{
title: 'Dive the Great Barrier Reef.',
country: 'Australia',
url: 'https://en.wikipedia.org/wiki/Great_Barrier_Reef',
done: false
},
{
title: 'Pet a Quokka.',
country: 'Australia',
url: 'https://en.wikipedia.org/wiki/Quokka',
done: false
},
{
title: 'Experience La Tomatina.',
country: 'Spain',
url: 'https://en.wikipedia.org/wiki/La_Tomatina',
done: false
},
{
title: 'The Gibbon Experience.',
country: 'Laos',
url: 'https://www.gibbonexperience.org/',
done: false
},
{
title: 'Explore the Hang Sơn Đoòng Cave.',
country: 'Vietnam',
url: 'https://en.wikipedia.org/wiki/Hang_S%C6%A1n_%C4%90o%C3%B2ng',
done: false
},
{
title: 'Hike to Everest Base Camp.',
country: 'Nepal / Tibet',
url: 'https://en.wikipedia.org/wiki/Everest_Base_Camp',
done: false
},
{
title: 'Mario Kart through Tokyo.',
country: 'Japan',
url: 'https://maricar.com/',
done: false
},
{
title: 'Visit Monument Valley.',
country: 'USA',
url: 'https://en.wikipedia.org/wiki/Monument_Valley',
done: false
},
{
title: 'Visit Prada Marfa.',
country: 'USA',
url: 'https://en.wikipedia.org/wiki/Prada_Marfa',
done: false
},
{
title: 'Climb Mount Kilimanjaro.',
country: 'Tanzania',
url: 'https://en.wikipedia.org/wiki/Mount_Kilimanjaro',
done: false
},
{
title: 'Do the Shikoku Pilgrimage.',
country: 'Japan',
url: 'https://en.wikipedia.org/wiki/Shikoku_Pilgrimage',
done: false
}
]
});