Fons van der Plas

Results 662 comments of Fons van der Plas

Though my initial reaction is that the GIF in the original issue (https://github.com/Wikunia/Javis.jl/issues/208#issue-711378199) is Interact.jl, which is an interaction _within_ a cell. This is paradigmatically different from the interactivity that...

With syntax it would be ```julia Slideshow([ for n in 1:100 for m in 1:100 ], autoplay=true, fps=20) ``` and we should make an alias `Animation(...) = Slideshow(...; autoplay=true, fps=20)`...

@yha This feature is secret!! (Might break at some point)

The problem is that it's almost impossible to support in combination with the feature that inputs can transform their value (#148), because the frontend will synchronize their *original, untransformed values*....

Let's call it Slider2D?

HTML+CSS will look much better than a canvas for this

To fix this, we should use `Object.defineProperty(container, "value", ...)` instead of `container.value` here: https://github.com/JuliaPluto/PlutoUI.jl/blob/36c9d170f6a6ce3594f7e95bd2e2851aae3d257a/src/MultiCheckBox.jl#L173 This is done in most other PlutoUI elements, so you can take a look at those...

Thanks! The `input` event bubbles upwards, so you might not need to fire it again a second time. Can you remove that line and see if it still works?

The docs are unclear, the current description explains _implementation details_, but it doesn't actually say what the `CSSWidgetWrapper` does. Can you follow the formatting conventions used here? Use Markdown syntax...