Files
speckle-server/packages/viewer-sandbox/index.html
T
Dimitrie Stefanescu 08ab4910c1 Dim/sandbox/url support (#728)
* feat(sandbox): varied url loading support

* fix(optional): removes input box

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Fixed some lint warnings

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: AlexandruPopovici <alexandrupopoviciioan@gmail.com>
2022-04-28 10:47:51 +03:00

35 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div id="renderer" />
<!-- <div id="app">
<div class="container">
<div class="row">
<div class="twelve columns h-96">
<input
id="objectUrlInput"
class="input"
type="text"
name="objectId"
placeholder="Object Url"
style="width: 49%"
value="https://latest.speckle.dev/streams/010b3af4c3/objects/a401baf38fe5809d0eb9d3c902a36e8f"
/>
<button id="loadButton" class="button" onclick="loadData()" style="width: 29%">
Load Object URL
</button>
</div>
</div>
</div>
</div> -->
<script type="module" src="/src/main.ts"></script>
</body>
</html>