Skip to content

Commit

Permalink
fix api docs for button
Browse files Browse the repository at this point in the history
  • Loading branch information
alyleui committed Oct 16, 2018
1 parent 0c80b69 commit 248fdbb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib/button/button.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export class LyButton implements OnInit, AfterViewInit, OnDestroy {
private _size: keyof Size;
private _sizeClass: string;
private _disableRipple: boolean = null;

/** @ignore */
@ViewChild('rippleContainer') _rippleContainer: ElementRef;

/** @ignore */
Expand All @@ -84,6 +84,7 @@ export class LyButton implements OnInit, AfterViewInit, OnDestroy {
this._rippleSensitive = toBoolean(value);
}

/** Whether ripples are disabled. */
@Input()
set disableRipple(val: boolean) {
if (Platform.isBrowser && val !== this._disableRipple) {
Expand Down Expand Up @@ -124,6 +125,7 @@ export class LyButton implements OnInit, AfterViewInit, OnDestroy {
private _renderer: Renderer2,
private _theme: LyTheme2,
private _ngZone: NgZone,
/** @ignore */
public _rippleService: LyRippleService,
@Optional() bgAndColor: LyCommon
) {
Expand Down

0 comments on commit 248fdbb

Please sign in to comment.