refactor: split editor in JS modules
This commit is contained in:
@ -4,9 +4,9 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Edit</title>
|
||||
<link rel="stylesheet" href="/base.css">
|
||||
<link rel="stylesheet" href="index.css">
|
||||
<script src="index.js"></script>
|
||||
<link rel="stylesheet" href="/static/css/base.css">
|
||||
<link rel="stylesheet" href="/static/css/edit.css">
|
||||
<script src="/static/js/edit.mjs" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<header id="topbar">
|
||||
@ -44,5 +44,18 @@
|
||||
</table>
|
||||
</div>
|
||||
</main>
|
||||
<div class="popup" id="subtitle-integrity">
|
||||
<div class="container">
|
||||
<h3 class="title">Subtitle Track Integrity</h3>
|
||||
<p id="st-integrity-desc"></p>
|
||||
<div class="original">
|
||||
<label for="st-integrity-og">Original Value</label>
|
||||
<input type="text" disabled id="st-integrity-og">
|
||||
</div>
|
||||
<div class="correction">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user