gitnet-assets/embed.js

10 lines
189 B
JavaScript
Raw Normal View History

2023-05-21 16:22:39 +02:00
(function() {
2023-05-21 16:26:41 +02:00
const params = new URLSearchParams(window.location.search)
2023-05-21 16:22:39 +02:00
2023-05-21 16:26:18 +02:00
if (!params.has('embed')) {
2023-05-21 16:22:39 +02:00
return
}
document.querySelector('body').classList.add('is-embeded')
})();