docs(site): typo

This commit is contained in:
Rahim
2025-10-30 05:10:22 +00:00
parent 5272b2678b
commit ed1398efbf
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -138,10 +138,10 @@ export function CustomSkin({ children, className }) {
<media-container class="custom-skin">
<slot></slot>
<div class="controls">
<vjs-play-button></vjs-play-button>
<vjs-time-slider>
<media-play-button></media-play-button>
<media-time-slider>
<!-- Custom skin structure -->
</vjs-time-slider>
</media-time-slider>
</div>
</media-container>
</media-provider>
@@ -28,13 +28,13 @@ Each primitive represents at most **one HTML element**, without internal element
<FrameworkCase frameworks={["html"]}>
```html
<vjs-time-slider>
<media-time-slider>
<div class="track"> <!-- One element: the track -->
<div class="progress"></div> <!-- One element: the progress bar -->
<div class="pointer"></div> <!-- One element: hover indicator -->
</div>
<div class="thumb"></div> <!-- One element: the draggable thumb -->
</vjs-time-slider>
</media-time-slider>
```
</FrameworkCase>