Fork me on GitHub
#reagent
<
2016-09-16
>
artur05:09:31

@juhoteperi very nice, thank you!

pesterhazy09:09:10

@juhoteperi that library looks very interesting

pesterhazy09:09:50

especially the autocomplete

nbenari12:09:24

Hi, I upgraded from 0.5.0 to 0.6.0 and now I get "Reaction is read only" which I did not see before. How do I make a mutable ratom from a subscription?

nbenari13:09:05

A re-frame subscription, which returns the result of a reaction. Used to be mutable until 0.6.0

nbenari13:09:41

you mean cursor is the solution to make a mutable value?

pesterhazy13:09:23

I didn't know that reaction could be swapped but it looks like you're right

pesterhazy13:09:50

are you sure that re-frame subscription are meant to support mutation? That seems at odds with its "state changes only through events" philosophy

alexati14:09:41

Hi! Newbie question: I’m trying to create part of an SVG as: [:filter {:id "blurFilter1”} [:feGaussianBlur {:in "SourceGraphic", :stdDeviation 1}]] But reagent renders it in the browser as: <filter id="blurFilter1" data-reactid=".0.2.0.$filter1”> <feGaussianBlur data-reactid=".0.2.0.$filter1.0”> </feGaussianBlur> </filter> So I lose the feGaussianBlur params. Why is that?