From f907cbe1bf3f11b985fb83d3446d620c439f0abf Mon Sep 17 00:00:00 2001 From: creeper123123321 <7974274+creeper123123321@users.noreply.github.com> Date: Sun, 13 Jun 2021 09:04:28 -0300 Subject: [PATCH] "listen to frontend" --- src/main/resources/web/js/page.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/web/js/page.js b/src/main/resources/web/js/page.js index 31af965..6a5e46f 100644 --- a/src/main/resources/web/js/page.js +++ b/src/main/resources/web/js/page.js @@ -98,7 +98,7 @@ function renderActions() { renderActions(); }); } - addAction("Listen to premium login in VIAaaS instance", () => { + addAction("Listen to frontend premium login in VIAaaS instance", () => { let user = prompt("Premium username (case-sensitive): ", ""); if (!user) return; let callbackUrl = new URL(location); @@ -107,7 +107,7 @@ function renderActions() { location = "https://api.minecraft.id/gateway/start/" + encodeURIComponent(user) + "?callback=" + encodeURIComponent(callbackUrl); }); - addAction("Listen to offline login in VIAaaS instance", () => { + addAction("Listen to frontend offline login in VIAaaS instance", () => { let user = prompt("Offline username (case-sensitive):", ""); if (!user) return; let taskId = Math.random();