mirror of
https://github.com/agdamsbo/prioritized.grouping.git
synced 2026-06-19 05:47:30 +02:00
first commit
This commit is contained in:
commit
6333bcee61
208 changed files with 413695 additions and 0 deletions
34
docs/edit/index.html
Normal file
34
docs/edit/index.html
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Shiny examples browser</title>
|
||||
<script
|
||||
src="../shinylive/load-shinylive-sw.js"
|
||||
type="module"
|
||||
></script>
|
||||
<script src="../shinylive/jquery.min.js"></script>
|
||||
<script src="../shinylive/jquery.terminal/js/jquery.terminal.min.js"></script>
|
||||
<link
|
||||
href="../shinylive/jquery.terminal/css/jquery.terminal.min.css"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<script type="module">
|
||||
import { runApp } from "../shinylive/shinylive.js";
|
||||
const response = await fetch("../app.json");
|
||||
if (!response.ok) {
|
||||
throw new Error("HTTP error loading app.json: " + response.status);
|
||||
}
|
||||
const appFiles = await response.json();
|
||||
|
||||
const appRoot = document.getElementById("root");
|
||||
runApp(appRoot, "editor-terminal-viewer", {startFiles: appFiles}, "r");
|
||||
</script>
|
||||
<link rel="stylesheet" href="../shinylive/style-resets.css" />
|
||||
<link rel="stylesheet" href="../shinylive/shinylive.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div style="height: 100vh; width: 100vw" id="root"></div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue