Pushibus mit ImageMaster3000

This commit is contained in:
Simon Lübeß
2023-08-03 23:24:10 +02:00
parent e9b9275999
commit ff68594f03
4 changed files with 99 additions and 20 deletions

View File

@ -34,5 +34,25 @@
</div>
<script src="_framework/blazor.server.js"></script>
<script type="module" src="scripts/ImageMaster3000.js"></script>
<script>
window.DoSexyStuffBridge = async function (prompt)
{
// Stellen Sie sicher, dass das Modul geladen und die Funktion verfügbar ist
if (typeof DoSexyStuff === "function")
{
return await DoSexyStuff(prompt);
}
else
{
console.error("Die Funktion DoSexyStuff ist nicht verfügbar.");
return "Error";
}
}
</script>
</body>
</html>