mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 09:49:28 +02:00
12 lines
No EOL
409 B
JavaScript
12 lines
No EOL
409 B
JavaScript
$(document).ready(function () {
|
|
setInterval(function () {
|
|
if (typeof isOnlineLabel !== 'undefined' && (isOnlineLabel || $('.liveOnlineLabel.label-success').length)) {
|
|
$('body').addClass('isLiveOnline');
|
|
$('#liveControls').slideDown();
|
|
} else {
|
|
$('body').removeClass('isLiveOnline');
|
|
$('#liveControls').slideUp();
|
|
}
|
|
}, 1000);
|
|
|
|
}); |