mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-05-14 14:22:16 +00:00
Please let this be the end of it all
This commit is contained in:
parent
4d912d314c
commit
c732af8122
2 changed files with 2 additions and 2 deletions
|
@ -50,7 +50,7 @@ function getSearch() {
|
||||||
hint.innerHTML = '';
|
hint.innerHTML = '';
|
||||||
|
|
||||||
data.forEach(user => {
|
data.forEach(user => {
|
||||||
let el = document.createElement('button');
|
const el = document.createElement('button');
|
||||||
el.innerHTML = user;
|
el.innerHTML = user;
|
||||||
el.onmousedown = function (event) {
|
el.onmousedown = function (event) {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
function yeetSession(id) {
|
function yeetSession(id) {
|
||||||
let form = new FormData();
|
const form = new FormData();
|
||||||
form.append('session', id);
|
form.append('session', id);
|
||||||
|
|
||||||
fetch('/api/tokens', {
|
fetch('/api/tokens', {
|
||||||
|
|
Loading…
Add table
Reference in a new issue