26 lines
990 B
HTML
26 lines
990 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
|
|
<title>dequoter</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<dialog id="command-dialog" data-controller="commands"
|
|
data-action="dq-showcommands@window->commands#showCommands">
|
|
<div class="dialog-body">
|
|
<div class="command-input">
|
|
<input data-commands-target="commandInput" type="text" placeholder="Enter command"
|
|
data-action="keyup.enter->commands#runCommand keydown.esc->commands#dismissDialog keyup->commands#handleKeyup">
|
|
</div>
|
|
<select multiple class="command-options" data-commands-target="commandSelect">
|
|
<option value="unquote"><span class="option-label">Unquote</span></option>
|
|
<option value="format-json"><span class="option-label">Format JSON</span></option>
|
|
</select>
|
|
</div>
|
|
</dialog>
|
|
<script src="./src/main.js" type="module"></script>
|
|
</body>
|
|
</html>
|