metamaps--metamaps/app/assets/javascripts/homepageVimeoFallback.js

30 lines
854 B
JavaScript
Raw Normal View History

2016-11-05 11:10:42 -04:00
/* global $ */
2016-03-30 22:19:29 -04:00
$(document).ready(function () {
2016-11-05 11:10:42 -04:00
if (window.location.pathname === '/') {
2016-03-30 22:19:29 -04:00
$.ajax({
2016-11-05 11:10:42 -04:00
type: 'GET',
url: 'https://player.vimeo.com',
error: function (e) {
$('.homeVideo').hide()
2016-03-30 22:19:29 -04:00
$('.homeVideo').replaceWith($('<video/>', {
poster: '/assets/metamaps-intro-poster.webp',
width: '560',
height: '315',
class: 'homeVideo',
controls: ''
2016-11-05 11:10:42 -04:00
}))
2016-03-30 22:19:29 -04:00
$('.homeVideo').append($('<source/>', {
2016-11-05 11:10:42 -04:00
src: 'https://metamaps.cc/videos/metamaps-intro.mp4',
2016-03-30 22:19:29 -04:00
type: 'video/mp4'
2016-11-05 11:10:42 -04:00
}))
2016-03-30 22:19:29 -04:00
$('.homeVideo').append(
'<p>You can watch our instruction video at ' +
'<a href="https://metamaps.cc/videos/metamaps-intro.mp4">' +
'https://metamaps.cc/videos/metamaps-intro.mp4</a>.'
2016-11-05 11:10:42 -04:00
)
2016-03-30 22:19:29 -04:00
}
2016-11-05 11:10:42 -04:00
})
}// if
})