feat(webui): add list of owned warframes & weapons with "Make Rank 30" option #170

Merged
Sainan merged 4 commits from webui-ii into main 2024-05-06 06:14:09 -07:00
Showing only changes of commit 985e71951c - Show all commits

View File

@ -78,6 +78,7 @@ function doAcquireWarframe() {
}); });
req.done(() => { req.done(() => {
alert("Warframe added to your inventory! Visit navigation to force an inventory update."); alert("Warframe added to your inventory! Visit navigation to force an inventory update.");
document.getElementById("warframe-to-acquire").value = "";
}); });
} }
@ -102,6 +103,7 @@ function doAcquireWeapon() {
}); });
req.done(() => { req.done(() => {
alert("Weapon added to your inventory! Visit navigation to force an inventory update."); alert("Weapon added to your inventory! Visit navigation to force an inventory update.");
document.getElementById("weapon-to-acquire").value = "";
}); });
} }