1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-06 03:50:04 +02:00

Improve Socket

Remove some deprecated plugins, LiveChat and FBTube
This commit is contained in:
DanielnetoDotCom 2021-01-22 16:04:16 -03:00
parent f13037a5be
commit c65b03f155
731 changed files with 294 additions and 87371 deletions

View file

@ -1076,7 +1076,17 @@ $(document).ready(function () {
setPlayerListners();
$('.duration:contains("00:00:00"), .duration:contains("EE:EE:EE")').hide();
setInterval(function () {
if (typeof conn != 'undefined') {
if (avideoSocketIsActive()) {
$(".socketStatus").removeClass('disconnected');
} else {
$(".socketStatus").addClass('disconnected');
}
}
}, 1000);
});
function validURL(str) {