360p player iframe

This commit is contained in:
vance 2024-05-02 21:06:18 -07:00
parent 76d5bcc58c
commit 075b4e1140

View File

@ -71,9 +71,9 @@
</head>
<body>
<img id='cursor' src='bonzi.png' alt='cursor' />
<iframe allowfullscreen height='350px' id='live' referrerpolicy='origin' scrolling='no'
src='https://live.vance.land/vance/' title='live.vance.land' width='550px'>
<img alt='cursor' id='cursor' src='bonzi.png'/>
<iframe allowfullscreen height='360px' id='live' referrerpolicy='origin' scrolling='no'
src='https://live.vance.land/vance/' title='live.vance.land' width='640px'>
</iframe>
<script>
const email = (function () {
@ -215,7 +215,7 @@
.then(data => {
const items = data.querySelectorAll('item');
items.forEach(element => {
text = document.createElement('p');
const text = document.createElement('p');
text.innerHTML = (element.getElementsByTagName('content:encoded')[0] ?? element.getElementsByTagName('title')[0]).textContent;
createAnchor(element.querySelector('link').innerHTML, text.outerHTML);
});