hoplon

The :hoplon: ClojureScript Web Framework - http://hoplon.io/
flyboarder 2018-01-24T04:29:26.000071Z

@thedavidmeister pushing….

flyboarder 2018-01-24T04:30:19.000053Z

and done 🙂

2018-01-24T04:30:30.000105Z

great, i'll test it out in a little bit

2018-01-24T04:30:34.000272Z

thanks for that

flyboarder 2018-01-24T04:30:58.000120Z

np

2018-01-24T09:08:28.000001Z

seems good, i've merged it in to my app, will let you know if i see issues

2018-01-24T09:25:00.000570Z

@flyboarder https://github.com/cljsjs/packages/pull/1205 i see what you did...

2018-01-24T09:25:13.000199Z

the auto generated extern for jquery is missing stuff 😞

flyboarder 2018-01-24T18:57:04.000094Z

@thedavidmeister oh sorry for that

2018-01-24T20:30:44.000351Z

@flyboarder I am trying to play around with hl-uikit. I have the css loaded and the accordion example using custom elements works. But when I try to use uikit-hl.align I'm getting:

(:require 
   [uikit-hl.core]
   [uikit-hl.align])
(span :align-right true "my text")
=>
<span align-right="align-right">my text</span>
Is there anything I need to do to load the do! custom attributes in the hl-uikit.align ns?

flyboarder 2018-01-24T20:53:08.000076Z

@chromalchemy I am updating the attribute format right now try :uk-align-right or :uikit/align-right

2018-01-24T21:10:16.000760Z

Ok, Thx. Right now with (span :uikit/align-right true "mytext") I get the same. With (span :uk-align-right true "mytext") I get <span uikit="{:uk-align-right true}">my text</span>. But I'll wait for update to try again.

2018-01-24T21:15:53.000721Z

Is there anything I need to do explicitly to initialize uikit js, or anything?