From 95d6e51abd3b8a52bed198c15283d0fe6526f94e Mon Sep 17 00:00:00 2001 From: Elijah Bansley Date: Fri, 18 May 2018 00:35:44 -0500 Subject: [PATCH] Update main.js --- main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.js b/main.js index 893d88b..ba12cbb 100644 --- a/main.js +++ b/main.js @@ -144,7 +144,7 @@ document.getElementById("goButton").addEventListener("click", async () => { logOutput("Requesting access to device..."); device = await navigator.usb.requestDevice({ filters: [{ vendorId: 0x0955 }] }); - logOutput(`Preparing to launch ${payloadType}...`); + logOutput(`

Preparing to launch ${payloadType}...

`); let payload; if (payloadType === "hekate v5") { @@ -161,7 +161,7 @@ document.getElementById("goButton").addEventListener("click", async () => { } payload = new Uint8Array(await readFileAsArrayBuffer(file)); } else { - logOutput("You're trying to load a payload type that doesn't exist."); + logOutput("

You're trying to load a payload type that doesn't exist.

"); return; }