Skip to content

Commit 4482a7a

Browse files
committed
Updates
1 parent a78ae32 commit 4482a7a

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

aspnetcore/blazor/components/lifecycle.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -840,7 +840,6 @@ Create a loading indicator component with a `Loading` parameter that can display
840840
```razor
841841
@if (Loading)
842842
{
843-
<div aria-busy="true" aria-describedby="progress-bar"></div>
844843
<progress id="progress-bar" aria-label="Content loading…"></progress>
845844
}
846845
else
@@ -869,8 +868,6 @@ If you wish to load styles for the indicator, add them to `<head>` content with
869868
...
870869
</style>
871870
</HeadContent>
872-
873-
<div aria-busy="true" aria-describedby="progress-bar"></div>
874871
<progress id="progress-bar" aria-label="Content loading…"></progress>
875872
}
876873
else

aspnetcore/blazor/fundamentals/startup.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,6 @@ If you wish to load styles for the indicator, add them to `<head>` content with
635635
</style>
636636
</HeadContent>
637637
-->
638-
<div aria-busy="true" aria-describedby="progress-bar" />
639638
<progress id="progress-bar" aria-label="Content loading…"></progress>
640639
}
641640
else
@@ -700,7 +699,6 @@ If you wish to load styles for the indicator, add them to `<head>` content with
700699
</style>
701700
</HeadContent>
702701
-->
703-
<div aria-busy="true" aria-describedby="progress-bar" />
704702
<progress id="progress-bar" aria-label="Content loading…"></progress>
705703
}
706704
else

0 commit comments

Comments
 (0)