Files
fdn2/public/js/calls.js
T

15 lines
275 B
JavaScript

$(document).ready(function(event){
$("video.localVideo").on('loadstart',function (event){
$(".poster").show();
});
$("video.localVideo").on('canplay',function (event){
$(this).parent().find(".poster").hide();
$(this).css({"visibility":"visible"});
});
});