Run [page minifier](https://www.npmjs.com/package/minify) locally before deployment
This commit is contained in:
@@ -380,7 +380,7 @@
|
||||
<form id="form">
|
||||
<label for="file">
|
||||
<input id="file" type="file">
|
||||
<p id="cust_rev">Upload loader.kip here</p>
|
||||
<small id="cust_rev">Upload loader.kip here</small>
|
||||
</label>
|
||||
</form>
|
||||
</body>
|
||||
|
||||
@@ -72,7 +72,6 @@ class CustEntry {
|
||||
}
|
||||
|
||||
createElement() {
|
||||
let form = document.getElementById("form")!;
|
||||
let input = this.getInputElement();
|
||||
if (!input) {
|
||||
let grid = document.createElement("div");
|
||||
@@ -97,7 +96,7 @@ class CustEntry {
|
||||
desc.setAttribute("for", this.id);
|
||||
grid.appendChild(desc);
|
||||
|
||||
form.appendChild(grid);
|
||||
document.getElementById("form")!.appendChild(grid);
|
||||
|
||||
let tooltip = new ErrorToolTip(this.id);
|
||||
tooltip.addChangeListener();
|
||||
|
||||
Reference in New Issue
Block a user