미디어위키:Gadget-GameEngine.js: 두 판 사이의 차이
보이기
잔글편집 요약 없음 |
잔글편집 요약 없음 |
||
7번째 줄: | 7번째 줄: | ||
if (!document.getElementById("iframe-template")) return; | if (!document.getElementById("iframe-template")) return; | ||
let wrapper = document.getElementById("iframe-template"); | let wrapper = document.getElementById("iframe-template"); | ||
let iframeTemplate = document.createElement(" | let iframeTemplate = document.createElement("iframe"); | ||
iframeTemplate.width = "100%"; | iframeTemplate.width = "100%"; | ||
iframeTemplate.height = "720px"; | iframeTemplate.height = "720px"; | ||
13번째 줄: | 13번째 줄: | ||
iframeTemplate.sandbox="allow-scripts allow-same-origin"; | iframeTemplate.sandbox="allow-scripts allow-same-origin"; | ||
iframeTemplate.src="https://" + wrapper.dataset.url; | iframeTemplate.src="https://" + wrapper.dataset.url; | ||
wrapper.appendChild( | wrapper.appendChild(iframeTemplate); | ||
}; | }; | ||
$(loadGameEngine); | $(loadGameEngine); |
2025년 3월 13일 (목) 22:56 판
/**
* Game Engine Embedder
* --[[사용자:Senouis|Senouis]] ([[사용자토론:Senouis|토론]]) 2025년 3월 13일 (목) 22:50 (KST)
*/
const loadGameEngine = () => {
if (!document.getElementById("iframe-template")) return;
let wrapper = document.getElementById("iframe-template");
let iframeTemplate = document.createElement("iframe");
iframeTemplate.width = "100%";
iframeTemplate.height = "720px";
iframeTemplate.referrerpolicy="same-origin";
iframeTemplate.sandbox="allow-scripts allow-same-origin";
iframeTemplate.src="https://" + wrapper.dataset.url;
wrapper.appendChild(iframeTemplate);
};
$(loadGameEngine);