stuta
stuta
And theer is also segmentation fault when looping code (about 230 loops in OSX). My other code did not use attach/detach at all and it had segmentation faults also. ---...
> A setting could be added to use tabs instead of space indent, however This would be very much needed. I don't want to change thousands of JSON files because...
What tools are you using to create these LuaJIT flame graphs?
Thanks for the profilier info!
Does this mean that you can re-order columns with drag and drop?
This project is alive and Luafun is dead, but Moses does not do things in lazy way. Performance difference is huge, so I continue to use Luafun that works great....
Lazy evaluation has nothing to do with Luajit. Lazy libraries just do much less iterations than non-lazy versions and that's the reason why they are so much faster. In my...
> The other problem is that css display: block (below) breaks flexbox. When I change it to display: flex then I get and error: Uncaught TypeError: Cannot read property 'setDraggables'...
Every draggable element must have smooth-dnd-draggable-wrapper class in it. It took me a long time to figure it out. Html page below works in new browsers that support dynamic import...
This works also in Firefox: ```html import './node_modules/smooth-dnd/dist/index.js' var options = {} var containerElement = document.getElementById('container'); var container = SmoothDnD.smoothDnD(containerElement, options); console.debug('SmoothDnD container:', container) ```