Ryan Bates

Results 175 comments of Ryan Bates

@priyank-p sure! Done here: #48

I had a need for multiple parents too. I saw issue #22 which mentions this is currently not supported by closure tree. I ended up bypassing closure tree entirely for...

Any update on this? It would be great to get this merged in. I just finished adding back a bunch of missing `viewBox` attributes because `svgo` stripped them. I assumed...

Any update on this? I'm also facing an issue where hide event is not triggered when autoclose is true.

Here's a related issue I ran into: 1. Have a ranged date picker with `keepEmptyValues: true` 2. Set the end date without setting a start date 3. Change the end...

Croppr doesn't crop the image, it just provides you with the coordinates of the crop rectangle. It's up to you to do the cropping which could be done on the...

Alternatively you can crop the image on the client side using a canvas. Something like this. ```js const sourceImage = document.getElementById("sourceImage"); const croppr = new Croppr(sourceImage, {}); // When finished...

I ran into this issue using [goldiloader](https://github.com/salsify/goldiloader) which does automatic eager-loading. I ended up disabling goldiloader for this method by adding the following to the model. ```rb # Disable goldiloader...

Thanks for researching this issue, and sorry I took so long to respond. Ruby Warrior is a hobby project and I haven't had a chance to work on it recently,...

For the record, I'm currently monkey-patching to work around this issue. Feel free to use this in the implementation. ```rb # in an initializer: module ClosureTree module NumericDeterministicOrdering def _ct_reorder_siblings(minimum_sort_order_value...