htmx-router
Advanced tools
Comparing version 1.0.7 to 1.0.9
@@ -55,3 +55,3 @@ /** | ||
string(name) { | ||
return encodeURIComponent(name) + "=" + encodeURIComponent(this.map[name]) + ";" + StringifyOptions(this.config[name]); | ||
return encodeURIComponent(name) + "=" + encodeURIComponent(this.map[name]) + StringifyOptions(this.config[name]); | ||
; | ||
@@ -86,5 +86,5 @@ } | ||
value = value[0].toUpperCase() + value.slice(1); | ||
config += `${prop}=${value};`; | ||
config += `; ${prop}=${value}`; | ||
} | ||
return config; | ||
} |
{ | ||
"name": "htmx-router", | ||
"version": "1.0.7", | ||
"version": "1.0.9", | ||
"description": "A lightweight SSR framework with server+client islands", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
81948