reflex-dom
reflex-dom copied to clipboard
Web applications without callbacks or side-effects. Reflex-DOM brings the power of functional reactive programming (FRP) to the web. Build HTML and other Document Object Model (DOM) data with a pure f...
Hi, I have app using `mainWidgetWithHead headElement bodyElement`, `headElement` contains function to load stylesheet like the following: ``` styleSheet link = elAttr "link" (Map.fromList [ , ("rel", "stylesheet") , ("type",...
In this [lpaste](http://lpaste.net/363787) 2 ways to initialize a RangeInput are compared: - `rangeInput $ def & attributes .~ constDyn ("value" =: "4" ...)` - `rangeInput $ def & rangeInputConfig_initialValue .~...
I've come across situations where `domEvent Load someImage` doesn't trigger for some images when there's many of them in the page. It seems to have the same fire/not-fire pattern in...
`manageHistory` currently maintains changes to the route internally but any other JS code listening for route events won't be notified when these updates happen. We can dispatch this event and...
Add `Animationend` and `Transitionend` to the event tags.
I'm trying to upgrade few of our libraries to make it compatible to latest reflex & reflex-dom. I couldn't able to find the equivalent of HasPostGui in the latest version....
Examples: ```hs import Reflex.Dom.Testing import Reflex.Dom.Testing (childButton, doClick) hspec $ do specify "constant rendering" $ do testRender (text "test1") `shouldBe` "test1" testRender (el "div" $ text "test2") `shouldBe` "test2" testRender...
I'd like to perform an action when any part of my `reflex-dom` application throws an action. I noticed that `Control.Exception.handle` at the top level doesn't seem to work, because apparently...
Hi, After migrating to the develop branch I can't find a way to use the "disconnect" functionality previously provided by `newEventWithTrigger`. The thing is that I need to trigger the...