mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
26 lines
747 B
HTML
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> |