17 lines
596 B
Plaintext
17 lines
596 B
Plaintext
$(document).on("click", "[data-behavior=play_recording]", function() {
|
|
$("#broadcast_video").data('videoType', 'recording');
|
|
|
|
var playback_url = $(this).attr("data-playback-url")
|
|
$("#broadcast_video").empty();
|
|
|
|
new Clappr.Player({
|
|
<%= "baseUrl: 'http://cdn.clappr.io/latest'," if Rails.env.test? %>
|
|
parentId: '#broadcast_video',
|
|
source: playback_url,
|
|
width: '100%',
|
|
height: '100%',
|
|
autoPlay: true
|
|
});
|
|
});
|
|
|
|
$(document).on("click", "[data-behavior=play_stream]", function() { $("#broadcast_video").data('videoType', 'stream'); }); |