소스 검색

Hide iframes without using comments

If iframes previously were inside a comment, they ended the comment,
accidentally uncommenting code.
2xB 2 년 전
부모
커밋
7eebcc2e85
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      viewer/archive/archiveviewer.js

+ 1 - 1
viewer/archive/archiveviewer.js

@@ -34,7 +34,7 @@ function replace_urls(text, url_before, url_after) {
 }
 
 function hide_iframes(text) {
-    return text.replaceAll("<iframe", "<!-- ").replaceAll("/iframe>", " -->")
+    return text.replaceAll("<iframe", "<div hidden ").replaceAll("/iframe>", "/div>")
 }
 
 function date_to_iso(value) {