Brian M Hunt
Brian M Hunt
Good point - this would break `max-height`. Maybe a line something like `if (textarea.css('max-height') !== "none") { textarea.css('overflow', 'hidden') }` could resolve this automatically. Your suggestion to add an option...
One solution is to apply `width: 100%` to the `` that the `` is found in.
Another solution is the application of the following CSS, per [this discussion on StackOverflow](http://stackoverflow.com/a/19894562/19212) ``` td { max-width: 0px; } ``` However one must note that this is based upon...
Thanks @cervengoc – I'll try and put together a test case, then we can sort out the issue. :) The gist is that (using ko.punches syntax) ``` {{ fastForEach: x...
I haven't looked at this in a bit, but if you can nail down a test that'd certainly go a long way — and in any case, a PR is...
Thanks @rposener Glad you solved the issue, and thanks for reporting — good to know about this (even if we can't get it resolved immediately)
Good question. 😄
It's a performance benefit IIRC - operate outside the DOM then insert. Should be a trivial fix, and suggest we do it. You ok putting a PR?
I never did any empirical testing of the advantage, so I'm curious to see results of a test. Since we are timing on `animationFrame` the reflows should batch and improve...
I'm wary of exposing `$containerElement` since it might give people the feeling that they can muck with it, but fastForEach is pretty fragile since it use DOM node offsets to...