Paul
Paul
I like the direction this is going. On routing, would it be possible to let the app decide the prefix for a component? I'm struggling to think of a really...
@joshdmiller I've overestimated what angular routing can do. (thanks for the pointer @mlegenhausen.) The "java-esque" comment just meant verbosity. Java project tend to have deeply nested directory structures and 2...
demo _can_ exist outside the source, but unless you code your own server task in grunt, the default "serve everything from this directory" breaks the template paths. It's like you...
https://github.com/desandro/get-size
Unfortunately, there's no way to solve this - even in theory. In order for any scroller to control the position of a list of elements, the total pixel height must...
You'd have to render all the elements in order to get the full height to use for the scrollable area. You couldn't render the scroll bar until you had done...
If the height of each element in the repeater is different, then you have to render every element in order to sum them up for the total height. If you...
Maybe what you are describing is "infinite scrolling" rather than "virtual scrolling". Virtual scrolling looks exactly like the normal, static case; it just optimises away the non-visible elements. Infinite scrolling...
yes, there will be a limit. I beleive it's most restrictive in IE, but I may be out of date on that. When I first looked in to making a-v-s,...
I have no plans to support it but I'm open to PRs. Any idea how complex it would be to support both?