[update] pdf预览禁止打开控制台

This commit is contained in:
lideqin
2024-05-09 09:47:49 +08:00
parent d8687c15a5
commit c18fa6cd30
+18
View File
@@ -34,6 +34,24 @@ See https://github.com/adobe-type-tools/cmap-resources
<script src="../build/pdf.js"></script>
<script src="viewer.js"></script>
<script>
if (!window.frameElement) {
document.addEventListener('keydown', function(event) {
if (event.key === 'F12' || event.keyCode === 123) {
event.preventDefault()
}
})
// 页面不是通过iframe嵌入的
const h = window.innerHeight
const w = window.innerWidth
window.onresize = function () {
if (h !== window.innerHeight || w !== window.innerWidth) {
window.open(window.location.href, '_blank')
window.close()
}
}
}
</script>
</head>