medium down adding controls to the html5 video on the front page
$('#glm-member-password-lost-link').click(function() {
$('#glm-member-password-lost-form').show();
});
+ var headerVideo = document.getElementById('front-page-video');
+
+ // if (headerVideo) {
+ // headerVideo.play();
+ // }
+ console.log("asdf");
+ if($(window).width() < 1024){
+ console.log("asdf");
+ $(headerVideo).attr("controls",true);
+ }
});
$('#glm-member-password-lost-link').click(function() {
$('#glm-member-password-lost-form').show();
});
+ var headerVideo = document.getElementById('front-page-video');
+
+ // if (headerVideo) {
+ // headerVideo.play();
+ // }
+ console.log("asdf");
+ if($(window).width() < 1024){
+ console.log("asdf");
+ $(headerVideo).attr("controls",true);
+ }
});