mirror of
https://github.com/lordfriky/web-cfw-loader.git
synced 2024-12-28 16:11:55 +00:00
Update main.js
This commit is contained in:
parent
a560c38ecb
commit
71ded9b78b
9
main.js
9
main.js
@ -107,13 +107,18 @@ async function launchPayload(payload) {
|
|||||||
|
|
||||||
document.getElementById("goButton").addEventListener("click", async () => {
|
document.getElementById("goButton").addEventListener("click", async () => {
|
||||||
var debugCheckbox = document.getElementById("shouldDebug");
|
var debugCheckbox = document.getElementById("shouldDebug");
|
||||||
|
const payloadType = document.forms.mainForm.payload.value;
|
||||||
if(debugCheckbox.checked) {
|
if(debugCheckbox.checked) {
|
||||||
logOutput(payload);
|
if (payloadType === "uploaded") {
|
||||||
|
const file = document.getElementById("payloadUpload").files[0];
|
||||||
|
} else if (payloadType === "fusee.bin") {
|
||||||
|
const file = fusee;
|
||||||
|
}
|
||||||
|
logOutput(readFileAsArrayBuffer(file));
|
||||||
}
|
}
|
||||||
logOutput("Requesting access to device...");
|
logOutput("Requesting access to device...");
|
||||||
device = await navigator.usb.requestDevice({ filters: [{ vendorId: 0x0955 }] });
|
device = await navigator.usb.requestDevice({ filters: [{ vendorId: 0x0955 }] });
|
||||||
|
|
||||||
const payloadType = document.forms.mainForm.payload.value;
|
|
||||||
logOutput(`Preparing to launch ${payloadType}...`);
|
logOutput(`Preparing to launch ${payloadType}...`);
|
||||||
|
|
||||||
let payload;
|
let payload;
|
||||||
|
Loading…
Reference in New Issue
Block a user