remote url changed
This commit is contained in:
@@ -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") {
|
||||
|
||||
Reference in New Issue
Block a user