We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Recently we upgraded our dependencies, switching from sablono 0.7.1 to 0.8.6.
And because of 17ec99d, some our code stopped working.
That is because previously (join-classes ["a" ["x" ["y"]]]) returned "a x y" and now "a x [\"y\"]"
(join-classes ["a" ["x" ["y"]]])
"a x y"
"a x [\"y\"]"
flatening happens only at the first level, what is problematic, when you have something like
(html [:div.a {:class [(if foo "x") (get-classes)]}])
where get-classes returns a dynamic list/vector.
get-classes
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Recently we upgraded our dependencies, switching from sablono 0.7.1 to 0.8.6.
And because of 17ec99d, some our code stopped working.
That is because previously
(join-classes ["a" ["x" ["y"]]])
returned"a x y"
and now
"a x [\"y\"]"
flatening happens only at the first level, what is problematic, when you have something like
where
get-classes
returns a dynamic list/vector.The text was updated successfully, but these errors were encountered: