From dc8740cca7f42b46babcd452c56649540c8de2b7 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Sun, 17 Jul 2016 16:38:44 +0200 Subject: [PATCH] docs(tabs): fix incorrect select change event name * The current documentation didn't match with the source code of the tabs component, which says that the attribute should be `selectChange` instead of `selectedChange` Closes #856 --- src/components/tabs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/tabs/README.md b/src/components/tabs/README.md index b5b5ca8d0136..ab39a34594a0 100644 --- a/src/components/tabs/README.md +++ b/src/components/tabs/README.md @@ -35,4 +35,4 @@ A basic tab group would have the following markup. | Name | Type | Description | | --- | --- | --- | | `focusChange` | `Event` | Fired when focus changes from one label to another | -| `selectedChange` | `Event` | Fired when the selected tab changes | +| `selectChange` | `Event` | Fired when the selected tab changes |