reflex-dom-core-0.7.0.0: Functional Reactive Web Apps with Reflex

Safe HaskellNone
LanguageHaskell98

Reflex.Dom.Class

Synopsis

Documentation

(=:) :: (At m, Monoid m) => Index m -> IxValue m -> m infixr 7 Source #

Previously an alias for singleton, but now generalised to At

keycodeEnter :: Int Source #

Deprecated: Instead of `x == keycodeEnter`, use `keyCodeLookup x == Enter`

keycodeEscape :: Int Source #

Deprecated: Instead of `x == keycodeEscape`, use `keyCodeLookup x == Escape`

holdOnStartup :: (PostBuild t m, PerformEvent t m, MonadHold t m) => a -> Performable m a -> m (Behavior t a) Source #