Files
openide/docs/plugin-graph/index.html
Vladimir Krivosheev 3aab104f68 plugin graph viewer - extract search to a web worker
GitOrigin-RevId: 3bb8e871699396720fa978991e9f95ef16afdf58
2021-06-06 07:26:01 +00:00

26 lines
747 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Plugin Graph</title>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
</head>
<body>
<!--suppress HtmlFormInputWithoutLabel -->
<input id="searchField"
type="search"
style="position: fixed; left: 50%; transform: translate(-50%, 0); z-index: 100;"
placeholder="filter"
spellcheck="false"
autofocus/>
<input id="fileInput"
type="file"
style="position: fixed; right: 0; z-index: 100;"
accept="application/json"/>
<div id="tooltip"></div>
<div id="cy" style="width: 100vw; height: 100vh;"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>