diff --git a/src/js/utilsSC.js b/src/js/utilsSC.js index baf505a24abd25c10d4ef741642a139a24a28f67..4f9316836e7081b3ced53a33acc7bec8ea6d04bd 100644 --- a/src/js/utilsSC.js +++ b/src/js/utilsSC.js @@ -1,18 +1,3 @@ -/** - * circumvents SugarCube, allowing a plain HTML5 UI within it - * - * @param {function(HTMLElement): HTMLElement} passageFunction - */ -globalThis.html5passage = function(passageFunction) { - $(document).one(":passagedisplay", (ev) => { - const element = document.createElement("div"); - element.classList.add("passage"); - document.getElementById("passages").appendChild(element); - passageFunction(element); - $(document).off(":passagedisplay"); - }); -}; - /** * If you want to include a SugarCube passage in a JS function use this. The result must be printed using the <<print>> * macro.