no commit message

This commit is contained in:
niandeng
2021-05-24 14:32:02 +08:00
parent 3a15e6b2c3
commit ec69431b9b
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -945,10 +945,10 @@
} else {
var html = '';
if (!this.isM3u8) {
html = '<video id="' + vid + '"' + src + ' width="100%" height="100%"' + autoplay + poster + loop + preload + controls + mobileautofull + track + crossorigin+'>' + source + '</video>';
html = '<video id="' + vid + '"' + src + ' controlslist="nodownload" width="100%" height="100%"' + autoplay + poster + loop + preload + controls + mobileautofull + track + crossorigin+'>' + source + '</video>';
} else {
html = '<video id="' + vid + '" width="100%" height="100%"' + poster + loop + preload + controls + mobileautofull + track + crossorigin+'></video>';
html = '<video id="' + vid + '" controlslist="nodownload" width="100%" height="100%"' + poster + loop + preload + controls + mobileautofull + track + crossorigin+'></video>';
}
this.PD.innerHTML = html;
this.V = this.getByElement('#' + vid); //V:定义播放器对象全局变量
+1 -1
View File
File diff suppressed because one or more lines are too long