mirror of
https://github.com/MillironX/Kelpie.jl.git
synced 2025-01-15 09:19:07 -05:00
Fix html_div not splatting its passed arguments
Fixes: 58244fcb5d
("Convert array checking to argument splatting")
Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>
This commit is contained in:
parent
8fd2e7c802
commit
8f1ddfc940
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ for symbol in HTML_ELEMENTS
|
||||||
end
|
end
|
||||||
|
|
||||||
function html_div(content...=nothing; kwargs...)
|
function html_div(content...=nothing; kwargs...)
|
||||||
return html_element("div", content; kwargs...)
|
return html_element("div", content...; kwargs...)
|
||||||
end #function
|
end #function
|
||||||
|
|
||||||
end #module
|
end #module
|
||||||
|
|
Loading…
Reference in a new issue