|
|
|
@ -15,14 +15,7 @@ |
|
|
|
{% if livelesson.cover and livelesson.cover.image %}{{ livelesson.cover.image.height }}{% else %}{{ block.super }}{% endif %} |
|
|
|
{% if livelesson.cover and livelesson.cover.image %}{{ livelesson.cover.image.height }}{% else %}{{ block.super }}{% endif %} |
|
|
|
{% endblock ogimage-height %} |
|
|
|
{% endblock ogimage-height %} |
|
|
|
|
|
|
|
|
|
|
|
{% block head %} |
|
|
|
|
|
|
|
{% if livelesson.stream_index %} |
|
|
|
|
|
|
|
<!--<script src="https://player.vimeo.com/api/player.js"></script>--> |
|
|
|
|
|
|
|
{% endif %} |
|
|
|
|
|
|
|
{% endblock head %} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% block content %} |
|
|
|
{% block content %} |
|
|
|
{% include 'templates/blocks/popup_school_lesson_ended.html' %} |
|
|
|
|
|
|
|
<div class="section" style="margin-bottom:0;padding-bottom:0"> |
|
|
|
<div class="section" style="margin-bottom:0;padding-bottom:0"> |
|
|
|
<div class="section__center center center_sm"> |
|
|
|
<div class="section__center center center_sm"> |
|
|
|
<div class="lesson"> |
|
|
|
<div class="lesson"> |
|
|
|
@ -30,7 +23,7 @@ |
|
|
|
<div class="lesson__content">{{ livelesson.short_description | safe | linebreaks }}</div> |
|
|
|
<div class="lesson__content">{{ livelesson.short_description | safe | linebreaks }}</div> |
|
|
|
<div class="lesson__video video"> |
|
|
|
<div class="lesson__video video"> |
|
|
|
{% if livelesson.stream_index %} |
|
|
|
{% if livelesson.stream_index %} |
|
|
|
<iframe class="lesson__video_frame" src="https://player.vimeo.com/video/{{ livelesson.stream_index }}" frameborder="0" |
|
|
|
<iframe class="lesson__video_frame js-video" data-is-vimeo="1" src="https://player.vimeo.com/video/{{ livelesson.stream_index }}" frameborder="0" |
|
|
|
width="720" height="400" |
|
|
|
width="720" height="400" |
|
|
|
webkitallowfullscreen mozallowfullscreen allowfullscreen> |
|
|
|
webkitallowfullscreen mozallowfullscreen allowfullscreen> |
|
|
|
</iframe> |
|
|
|
</iframe> |
|
|
|
@ -62,35 +55,4 @@ |
|
|
|
|
|
|
|
|
|
|
|
{% block foot %} |
|
|
|
{% block foot %} |
|
|
|
<script type="text/javascript" src="{% static 'liveLesson.js' %}"></script> |
|
|
|
<script type="text/javascript" src="{% static 'liveLesson.js' %}"></script> |
|
|
|
<!--<script src="https://code.jquery.com/jquery-2.2.0.min.js" type="text/javascript"></script>--> |
|
|
|
|
|
|
|
{% if livelesson.stream_index %} |
|
|
|
|
|
|
|
<script> |
|
|
|
|
|
|
|
/* |
|
|
|
|
|
|
|
var iframe = document.querySelector('iframe.lesson__video_frame'); |
|
|
|
|
|
|
|
var player = new Vimeo.Player(iframe); |
|
|
|
|
|
|
|
player.on('ended', function() { |
|
|
|
|
|
|
|
console.log('vimeo player: ended', arguments); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
player.on('error', function() { |
|
|
|
|
|
|
|
console.log('vimeo player: error', arguments[0]); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
player.on('loaded', function() { |
|
|
|
|
|
|
|
console.log('vimeo player: loaded', arguments[0]); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
player.on('ready', function() { |
|
|
|
|
|
|
|
console.log('vimeo player: ready', arguments[0]); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
player.on('play', function() { |
|
|
|
|
|
|
|
console.log('vimeo player: play', arguments[0]); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
player.on('pause', function(data) { |
|
|
|
|
|
|
|
console.log('vimeo player: pause', arguments[0]); |
|
|
|
|
|
|
|
if(data.percent == 1){ |
|
|
|
|
|
|
|
$('#popup-school-lesson-ended').addClass('open visible'); |
|
|
|
|
|
|
|
document.exitFullscreen(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
player.play().catch(e => console.log(e)); */ |
|
|
|
|
|
|
|
</script> |
|
|
|
|
|
|
|
{% endif %} |
|
|
|
|
|
|
|
{% endblock foot %} |
|
|
|
{% endblock foot %} |
|
|
|
|