Fork me on GitHub
#om
<
2015-12-12
>
drakezhard09:12:57

@maackle: You'll have to clone the om github repo and do a lein install on the project so that the alpha gets installed to the local maven repo. Then I believe proceed as usual with lein figwheel.

maackle17:12:36

I should have clarified, I already have the om alpha build, but figwheel seems not to be configured in the project (at least, lein figwheel didn't work). Also there seems to be a server component with ring, which I'm not accustomed to.

noonian17:12:57

Check out the scripts dir, you can run them like lein trampoline run -m clojure.main <path-to-script>

maackle17:12:36

Thanks, I'm not home now but I'll try both of those when I am

si1419:12:14

looks like this issue https://github.com/omcljs/om/issues/535 wasn't discussed here (or did I miss it in the search?), but it's still relevant

anmonteiro19:12:14

which browser did you use? it's working fine for me in chrome

si1419:12:45

I'm using chrome, too simple_smile it works perfectly with onChange and doesn't work with onKeyUp

Oliver George20:12:15

Yeah. I had that problem too.

leppert21:12:04

Looking over the autocomplete example (https://github.com/omcljs/om/blob/4a9c527b3238af2f861b861f84894cee08640b34/src/devcards/om/devcards/autocomplete.cljs#L72), if I wanted :search/results to accumulate / concat rather than be replaced on each query, how could I accomplish that?

anmonteiro21:12:03

@leppert: override merge-tree in the reconciler

leppert21:12:20

@anmonteiro: Ah, got it. Thank you!