From ae8b8a78fbeac93edda59c96b079e93e799d5dff Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Tue, 4 Jul 2017 22:53:53 +0200 Subject: [PATCH] docs(ripple): remove outdated createRipple method in docs * Replaces the outdated `createRipple()` method with the new `launch()` method in the docs. Fixes #5480 --- src/lib/core/ripple/ripple.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/core/ripple/ripple.ts b/src/lib/core/ripple/ripple.ts index 410c760e8be7..dd2d627895e5 100644 --- a/src/lib/core/ripple/ripple.ts +++ b/src/lib/core/ripple/ripple.ts @@ -57,8 +57,8 @@ export class MdRipple implements OnChanges, OnDestroy { @Input('mdRippleCentered') centered: boolean; /** - * Whether click events will not trigger the ripple. It can still be triggered by manually - * calling createRipple() + * Whether click events will not trigger the ripple. Ripples can be still launched manually + * by using the `launch()` method. */ @Input('mdRippleDisabled') disabled: boolean;