rDrama/files/assets/js/reddit_embed.js

11 lines
315 B
JavaScript
Raw Normal View History

2024-04-08 12:50:14 +00:00
addEventListener("message", function(t) {
if (typeof t.data == "string" && t.data) {
const data = JSON.parse(t.data)
2024-04-08 13:02:24 +00:00
let height = data.data
2024-04-08 12:50:14 +00:00
if (data && "type" in data && data.type == "resize.embed")
2024-04-08 13:02:24 +00:00
if (screen_width < 768)
height += 75
document.getElementById('reddit-embed').height = height
2024-04-08 12:50:14 +00:00
}
})