Thomas Burleson
Thomas Burleson
The pipe idea adds complexity. The angular motto: less is more. On Sun, Oct 1, 2017, 2:18 PM Damsorian wrote: > @ThomasBurleson - I like the > *observableFor*! what do...
Oh I like this ^ idea! PR anyone? On Fri, Oct 6, 2017, 12:17 AM Mike Meessen wrote: > I agree with @damsorian : having to inject > media into...
@CaerusKaru - I mean that I think adding responsive support to **ngIf** seems interesting: `*ngIf.=""`
@intellix - careful with your code above. If you use databinding `*xcMediaIf=""`, you will end up with Zombie subscriptions after the 2nd (or more) values activate. Try this: ```ts import...
@intellix - 1) Good: you are switching from `matcher` to `matchMedia.observe(query)` and subscribe. 2) Good: you cache the **last** subscription to clear on `ngOnDestroy()` 3) Zombie: previous subscriptions (if any)...
@intellix - I was not thinking clearly. You are correct that (in your case) the subscription remains constant and you only have (1) and (2). So you **do not have...
This will be possible with the resolution of a pending feature in Angular: Attribute Selectors with Dot Notations should write to @Input object maps. > Refs https://github.com/angular/angular/issues/13355
fxFlexFill is currently only a static API; see [here](https://github.com/angular/flex-layout/blob/master/src/lib/api/flexbox/flex-fill.ts).
@tbosch, @vicb - any thoughts on how we can generically query for any/all contentChildren ?
Attn: @CaerusKaru