remote url changed

This commit is contained in:
metacryst
2026-04-04 01:41:35 -05:00
parent 2592137fa3
commit 3fe1386415
5 changed files with 169 additions and 14 deletions

View File

@@ -1,6 +1,7 @@
/*
Sam Russell
Captured Sun
3.29.26 - Fix attr() bug with empty or null values
3.28.26 - Stopping state() from duplicating on rerender()
3.27.26 - Adding quill router, removing dynamicText(), removing horizontal and verticalAlign() checks
3.24.26 - Allowing state() to watch other elements
@@ -1343,7 +1344,7 @@ HTMLElement.prototype.attr = function(arg1, arg2) {
}
return this;
} else if(typeof arg1 === "string" && arg2) {
} else if(typeof arg1 === "string" && (arg2 || arg2 === "" || arg2 === null || arg2 === 0)) {
this.setAttribute(arg1, arg2)
return this
} else if(typeof arg1 === "string") {