Skip to content

Instantly share code, notes, and snippets.

@realtomaszkula
Last active August 6, 2018 12:10
Show Gist options
  • Save realtomaszkula/2ba5fe94ad8bacb69c4f31fd179520c7 to your computer and use it in GitHub Desktop.
Save realtomaszkula/2ba5fe94ad8bacb69c4f31fd179520c7 to your computer and use it in GitHub Desktop.
export class GradientButtonComponent implements AfterViewInit {
// ...
gradientRadius: number;
constructor(public el: ElementRef<HTMLElement>) {}
ngAfterViewInit() {
this.gradientRadius = this.el.nativeElement.getBoundingClientRect().width;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment