Jakob

Results 7 comments of Jakob

> You can probably hack your way around it with something like I also just encountered this issue and tried out the hack, but it seems it doesn't actualy use...

Ah just saw the other issue, sorry for the noise. Feel free to ignore!

Thanks! Should we leave this open for now for documentation purposes? I couldn't find anything on this in the docs but maybe I'm just blind.

Can confirm, I’m also having the same issue. Is there any known workaround?

Yeah, for now I've basically been using this: ```julia function partition!(f, x) sort!(x; by=!f) findfirst(!f, x) end ``` I guess it would make sense to bikeshed the name with `Iterators.partition`...

Relatedly, I tried the following which also worked in principle but because `cards` is an Observable of a vector of cards it doesn't get rendered as individual DOM elements. I...

Hey Simon, thanks for the pointer - I tried wrapping the cards into a minimal DOM element as you suggested but apparently the `carousel` div expects the `carousel-cell` divs as...