Nathan Power
Nathan Power
It seems listElms = element.children() is returning a larger number of elements than ng-repeat is creating, and this messes up the height calculation
Using $watchCollection(elem, fn) instead of $watch(elem, fn, true) solved the issue
Hi Yegor, Was there ever any progress on this? I am having a similar issue. Can email you details if you like. Cheers, Nathan
For me it is working in latest FF, Edge, Safari, just not Chrome. I get: CODE:4 MEDIA_ERR_SRC_NOT_SUPPORTED when I try to play html5 video. Accessing directly with s3 bucket published...
Are you using `unstyled: true` by any chance? Just hit a similar issue with that - you have to manage styles for the psuedo-focused items yourself in that case
> I believe (untested) that you can configure the Istanbul to collect coverage from all files with all flag I might be wrong, but I think this won't work for...
What about skipping the render if the `preRender` hook returned `false` or something like that? That would allow people to inspect context / parameters and skip based on that? My...
In case it's of use to anyone, I had to implement number formatting (not currency, the currency symbol is shown outside the input) so I made a reusable hook ```TS...