Skip to content

Instantly share code, notes, and snippets.

@rossmason
Created September 27, 2013 21:59
Show Gist options
  • Save rossmason/6735836 to your computer and use it in GitHub Desktop.
Save rossmason/6735836 to your computer and use it in GitHub Desktop.
MUSE demo Data
var regions = [ 'NA', 'LATAM', 'EMEA', 'APAC' ];
var REGION = {};
regions.forEach(function (region) { REGION[region] = region; });
var data =
[
{
title: 'iPhone 5s', description: 'The greatest phone since the last iPhone', imageUrl: '', region: REGION.NA,
presentations:
[
// { title: 'Product Video', description: 'The official video tour of the iPhone 5s', fileUrl: 'http://www.youtube.com/embed/u9EKkgbtJlI' },
{ title: 'Product Video', description: 'The official video tour of the iPhone 5s', fileUrl: 'http://www.youtube.com/embed/u9EKkgbtJlI' },
{ title: 'iOS7 Manual in English', description: 'The official iOS7 user manual', fileUrl: 'http://manuals.info.apple.com/MANUALS/1000/MA1565/en_US/iphone_user_guide.pdf' },
{ title: 'Official Feature presentation', description: 'Feature presentation from Apple Keynote', fileUrl: 'http://www.youtube.com/embed/gZac8af1L4E' },
{ title: 'Environment Spec Report', description: 'Environmental details of the iPhone and packaging', fileUrl: 'http://www.apple.com/environment/reports/docs/iPhone5s_product_environmental_report_sept2013.pdf' },
]
},
{
title: 'iWatch', description: 'Basically an iPod Nano with a watch strap', imageUrl: '', region: REGION.NA,
presentations:
[
{ title: 'Interview: iWatch', description: 'CEO Tim Cook, AllThingsD interview on the iWatch', fileUrl: 'http://www.youtube.com/embed/A7zCgdW1CLM#t=7' },
{ title: 'iWatch Concept Video', description: '', fileUrl: 'http://www.youtube.com/embed/TM4k-Jtby_c' },
{ title: 'iWatch Clear', description: 'Product Image of the iWatch clear', fileUrl: 'http://twimgs.com/informationweek/galleries/automated/949/image001_full.jpg' },
]
},
{
title: 'iPhone 5s Europe', description: 'Product 3', imageUrl: '', region: REGION.EMEA,
presentations:
[
{ title: 'Product Video', description: 'The official video tour of the iPhone 5s', fileUrl: 'http://www.youtube.com/embed/u9EKkgbtJlI' },
{ title: 'iOS7 Manual in English, French', description: 'The official iOS7 user manual', fileUrl: 'http://manuals.info.apple.com/MANUALS/1000/MA1565/en_US/iphone_user_guide.pdf' },
{ title: 'Official Feature presentation', description: 'Feature presentation from Apple Keynote', fileUrl: 'http://www.youtube.com/embed/gZac8af1L4E' },
{ title: 'Environment Spec Report', description: 'Environmental details of the iPhone and packaging', fileUrl: 'http://www.apple.com/environment/reports/docs/iPhone5s_product_environmental_report_sept2013.pdf' },
]
},
{
title: 'iPhone 5c', description: 'Big in Japan apparently', imageUrl: '', region: REGION.APAC,
presentations:
[
{ title: 'Product Video', description: 'The official video tour of the iPhone 5c', fileUrl: 'http://www.youtube.com/embed/s6m9wUSLeJs' },
{ title: 'TV Ad', description: 'The official TV ad for the iPhone 5c', fileUrl: 'http://www.youtube.com/watch?feature=player_profilepage&v=D7KuXMHN_X4' },
{ title: 'iOS7 Manual in English, French', description: 'The official iOS7 user manual', fileUrl: 'http://manuals.info.apple.com/MANUALS/1000/MA1565/en_US/iphone_user_guide.pdf' },
{ title: 'Official Feature presentation', description: 'Feature presentation from Apple Keynote', fileUrl: 'http://www.youtube.com/embed/gZac8af1L4E' },
{ title: 'Environment Spec Report', description: 'Environmental details of the iPhone and packaging', fileUrl: 'http://www.apple.com/environment/reports/docs/iPhone5s_product_environmental_report_sept2013.pdf' },
]
},
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment