ZXT

Results 7 comments of ZXT

It's been a while since I've followed the updates on the leaflet, I'll check it out recently and reply.

This is perfectly legal behavior (as per specs), maybe not expected but not a bug per se I think: Changing the display CSS value of an element with the hidden...

I also encountered the same problem,example code : ``` js // Task(functor,applicative,monad) const Task = fork => ({ map: f => Task((reject, resolve) => fork(reject, a => resolve(f(a)))), ap: fn...

Hi,@admhemed & @dotnetCarpenter ,similar to `Promise.all`, but the `ap` function only needs to receive one `Task`. ``` js // Task(functor,applicative,monad) const Task = fork => ({ map: f => Task((reject,...

I'll update the link to the demo, thanks for the feedback.

Hi,@TheMangoTrain, L.setOptions will replaces the options(html) of the L.DivIcon,so I wrap the options html with a div,which class is magic, please check the test folder, there is an example.