Juho Vepsäläinen

Results 352 comments of Juho Vepsäläinen

Another thought... What if you want to display a color at a cell? Just making it possible to define a custom editor wouldn't be enough. You would need to be...

I have a check like this: ``` javascript if(isTouch()) dragTemplate(elem, cbs, 'touchstart', 'touchmove', 'touchend'); else dragTemplate(elem, cbs, 'mousedown', 'mousemove', 'mouseup'); ... // http://stackoverflow.com/questions/4817029/whats-the-best-way-to-detect-a-touch-screen-device-using-javascript function isTouch() { return typeof(window.ontouchstart) != 'undefined';...

Excellent point! Can you try disabling the check and registering both and let me know how that goes? I don't have a way to test it.

Included to 5.9.0.

#213 just landed. It's possible it helps with this particular use case or at least can help to find a solution for it.

It looks like one way to work around the problem is to set up a rollup build and treat the wasm bundle as an external. I found an example of...

If you are looking for something Swagger 2.0 compatible, consider https://github.com/paulhill/swagger-n . It's not perfect but perhaps an alternative.

See also https://github.com/apigee-127/swagger-tools .

Speaking of demo, it can be useful to host it at GitHub Pages. I have a setup for this at [my boilerplate](https://github.com/survivejs/react-component-boilerplate) in case you want to adapt.