EnterCode Signup working

- After fetching join code in EnterCode(), it sets networkId attribute on "signup-" (Signup.js)
- Signup.js then includes the attribute in the call body
- Modified all calls to /signout, /profile, /login, /signup to be prefixed by '/auth'
- Added '/auth' to vite config file
- Modified final "else if" statement in .attr in quill.js to return `this.getAttribute(arg1)` instead of `this.getAttribute("")`
This commit is contained in:
2026-03-24 15:48:23 -04:00
parent 124066da59
commit 40b0855ca5
6 changed files with 14 additions and 22 deletions

View File

@@ -1261,7 +1261,7 @@ HTMLElement.prototype.attr = function(arg1, arg2) {
this.setAttribute(arg1, arg2)
return this
} else if(typeof arg1 === "string") {
return this.getAttribute("")
return this.getAttribute(arg1)
} else {
throw new TypeError("wrong parameter for attr(): ", arg1);
}