1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

Squash: Merge #2732

This commit is contained in:
winlin 2021-11-14 21:50:58 +08:00
parent 5f85d405e7
commit 440f29b758
3 changed files with 6 additions and 4 deletions

View file

@ -295,8 +295,9 @@
});
$("#btn_start").click(startDemo);
// Never play util windows loaded @see https://github.com/ossrs/srs/issues/2732
if (conf.autostart) {
startDemo();
window.addEventListener("load", function(){ startDemo(); });
}
});
</script>

View file

@ -199,8 +199,9 @@
});
$("#btn_start").click(startDemo);
// Never play util windows loaded @see https://github.com/ossrs/srs/issues/2732
if (conf.autostart) {
startDemo();
window.addEventListener("load", function(){ startDemo(); });
}
});
</script>

View file

@ -110,12 +110,12 @@ $(function(){
srs_init_rtc("#txt_url", query);
$("#btn_publish").click(startPublish);
// Never play util windows loaded @see https://github.com/ossrs/srs/issues/2732
if (query.autostart === 'true') {
startPublish();
window.addEventListener("load", function(){ startPublish(); });
}
});
</script>
</body>
</html>
</html>