미디어위키:Gadget-GameEngine.js: 두 판 사이의 차이
보이기
편집 요약 없음 태그: 되돌려진 기여 |
편집 요약 없음 태그: 되돌려진 기여 |
||
11번째 줄: | 11번째 줄: | ||
iframeTemplate.height = "720px"; | iframeTemplate.height = "720px"; | ||
iframeTemplate.allowfullscreen = true; | iframeTemplate.allowfullscreen = true; | ||
iframeTemplate.csp = ` | iframeTemplate.csp = `frame-src: https://axqckszuelnj.objectstorage.ap-chuncheon-1.oci.customer-oci.com 'self'; worker-src: https://axqckszuelnj.objectstorage.ap-chuncheon-1.oci.customer-oci.com 'self'`; | ||
iframeTemplate.sandbox="allow-scripts"; | iframeTemplate.sandbox="allow-scripts"; | ||
iframeTemplate.src="https://" + wrapper.dataset.url; | iframeTemplate.src="https://" + wrapper.dataset.url; |
2025년 3월 16일 (일) 16:09 판
/**
* 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.allowfullscreen = true;
iframeTemplate.csp = `frame-src: https://axqckszuelnj.objectstorage.ap-chuncheon-1.oci.customer-oci.com 'self'; worker-src: https://axqckszuelnj.objectstorage.ap-chuncheon-1.oci.customer-oci.com 'self'`;
iframeTemplate.sandbox="allow-scripts";
iframeTemplate.src="https://" + wrapper.dataset.url;
wrapper.appendChild(iframeTemplate);
};
$(loadGameEngine);