-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcaptions.js
More file actions
14 lines (14 loc) · 780 Bytes
/
Copy pathcaptions.js
File metadata and controls
14 lines (14 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Global captions data (no fetch required)
// Structure keeps parity with prior JSON format
window.CAPTIONS = {
rockets: [
{ id: 1, video: 'rocket1.mp4', caption: 'Horizon - 2-Stage Water Rocket - World record flight' },
{ id: 2, video: 'rocket2.mp4', caption: 'TinTin - 1/4 Scale V2 Rocket' },
{ id: 3, video: 'rocket3.mp4', caption: 'Bucky - OddRoc - Sparky Motor' },
{ id: 4, video: 'rocket4.mp4', caption: 'TajFun 2 - Level 2 HPR Rocket' },
{ id: 5, video: 'rocket5.mp4', caption: 'Patriot - Level 3 HPR rocket' },
{ id: 6, video: 'rocket6.mp4', caption: 'Dark Shadow - Too much power' },
{ id: 7, video: 'rocket7.mp4', caption: 'TVC Rocket - Stability is hard' },
{ id: 8, video: 'rocket8.mp4', caption: 'MPR Rocket' }
]
};