From 25f31f2a14964d8487ce5f4b4f21fbf50cf1fb02 Mon Sep 17 00:00:00 2001 From: Emmanuel DEMEY Date: Thu, 22 Aug 2019 11:09:44 +0200 Subject: [PATCH] docs: Update the aria-valuemax attr of the sample (#32261) In order to be the same value as the one use here : https://stackblitz.com/edit/angular-kn5jdi?file=src%2Fapp%2Fprogress-bar.ts PR Close #32261 --- aio/content/guide/accessibility.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/accessibility.md b/aio/content/guide/accessibility.md index 44ad2ecd97..4fa3a927cd 100644 --- a/aio/content/guide/accessibility.md +++ b/aio/content/guide/accessibility.md @@ -99,7 +99,7 @@ The following example shows how to make a simple progress bar accessible by usin // Sets the minimum and maximum values for the progressbar role. 'aria-valuemin': '0', - 'aria-valuemax': '0', + 'aria-valuemax': '100', // Binding that updates the current value of the progressbar. '[attr.aria-valuenow]': 'value',