Skip to content

Commit

Permalink
fix(fxFlexFill, fxFlexAlign): update selectors and wiki
Browse files Browse the repository at this point in the history
* update API to support fxFill or fxFlexFill selectors
* update wiki docs to sync with API fxFlexAlign

Fixes #93.
  • Loading branch information
ThomasBurleson committed Jan 5, 2017
1 parent 597a4b4 commit 8f591c5
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions src/lib/flexbox/api/flex-fill.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,7 @@ const FLEX_FILL_CSS = {
*/
@Directive({selector: `
[fxFill],
[fxFill.xs]
[fxFill.gt-xs],
[fxFill.sm],
[fxFill.gt-sm]
[fxFill.md],
[fxFill.gt-md]
[fxFill.lg],
[fxFill.gt-lg],
[fxFill.xl]
[fxFlexFill]
`})
export class FlexFillDirective extends BaseFxDirective {
constructor(monitor: MediaMonitor, public elRef: ElementRef, public renderer: Renderer) {
Expand Down

1 comment on commit 8f591c5

@somombo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

does this mean fxFlexFill.xs (etc..) is now also a supported selector?

Please sign in to comment.