1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 09:49:28 +02:00
Oinktube/plugin/Live/view/isOnlineLabel.js
2022-12-29 10:57:01 -03:00

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);
});