-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexportVar.js
14 lines (14 loc) · 865 Bytes
/
exportVar.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export let inputSeed = document.getElementById("seed");
export let input = document.getElementById("input");
export let inputNegative = document.getElementById("inputNegative");
export let generateBtn = document.getElementById("btn");
export let fileType = document.getElementsByName("fileType").selected;
export let model = document.getElementById("model");
export let scheduler = document.getElementById("scheduler");
export let getRandSeed = document.getElementById("getRandSeed");
export let negativeTemplate = document.getElementById("negativeTemplate");
export let spinnerGen = document.getElementById("spinner1");
export let loadingResult = document.getElementById("loadingResult");
export let result = document.getElementById("result");
export let dumpTxt = document.getElementById("dumptxt");
export let resultImg = document.getElementById("resultImage");