-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(progress-spinner): not working with server-side rendering (#4020)
* Switches the progress spinner from using `querySelector` to `ViewChild`. * Moves all of the remaining DOM manipulation to the renderer. * Skips animations if `requestAnimationFrame` is not available. * Simplifies some unnecessarily complex logic for adding/removing the theme class. Fixes #3988.
- Loading branch information
Showing
2 changed files
with
20 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,5 +5,5 @@ | |
--> | ||
<svg viewBox="0 0 100 100" | ||
preserveAspectRatio="xMidYMid meet"> | ||
<path></path> | ||
<path #path></path> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters