浏览代码

Add versions to a comment

customisations
alemart 1年前
父节点
当前提交
536ad39af3
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      src/sources/video-source.ts

+ 2
- 2
src/sources/video-source.ts 查看文件

146
             // handle WebKit quirks
146
             // handle WebKit quirks
147
             if(Utils.isWebKit()) {
147
             if(Utils.isWebKit()) {
148
 
148
 
149
-                // on Epiphany, a hidden <video> shows up as a black screen when copied to a canvas
150
-                // on iOS, this hack doesn't seem necessary, but works okay
149
+                // on Epiphany 45, a hidden <video> shows up as a black screen when copied to a canvas
150
+                // on iOS 15.2-17.3, this hack doesn't seem necessary, but works okay
151
                 if(video.hidden) {
151
                 if(video.hidden) {
152
                     video.hidden = false;
152
                     video.hidden = false;
153
                     video.style.setProperty('opacity', '0');
153
                     video.style.setProperty('opacity', '0');

正在加载...
取消
保存