Hello!
I'm developing an app with Polymer and I came across a situation in which I have a list of items rendered by a dom-repeat element. This element has display: none but is a sibling to rendered items. It looks somewhat like this:
Because of that element after reordering any item below its starting position, it goes all the way to the bottom. I found that adding something like this
to line 384 when skippedNodes = [ 'DOM-REPEAT' ] fixes the issue. It would be great to have an option to pass something like that array to Slip and later use it to filter out such elements.
Hello! I'm developing an app with Polymer and I came across a situation in which I have a list of items rendered by a
dom-repeat
element. This element hasdisplay: none
but is a sibling to rendered items. It looks somewhat like this:Because of that element after reordering any item below its starting position, it goes all the way to the bottom. I found that adding something like this
to line 384 when
skippedNodes = [ 'DOM-REPEAT' ]
fixes the issue. It would be great to have an option to pass something like that array to Slip and later use it to filter out such elements.