Skip to content

Instantly share code, notes, and snippets.

@blasten
Created December 22, 2015 02:04
Show Gist options
  • Save blasten/336cc142d5fb457afa88 to your computer and use it in GitHub Desktop.
Save blasten/336cc142d5fb457afa88 to your computer and use it in GitHub Desktop.
function getElementsStampedByDomRepeat(domRepeat) {
return [].slice.call(domRepeat.parentElement.children).reduce(function(arr, child) {
if (domRepeat.modelForElement(child)) {
arr.push(child);
}
return arr;
}, []);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment