mirror of
https://github.com/SrIzan10/vdo.ninja.git
synced 2026-05-01 11:05:24 +00:00
8 lines
196 B
JavaScript
8 lines
196 B
JavaScript
const params = new URLSearchParams(window.location.search);
|
|
const studioMode = params.has('podcast');
|
|
|
|
if (studioMode) {
|
|
import('./studio.js');
|
|
document.body.style.display = "unset";
|
|
}
|