Skip to content

Commit

Permalink
feat: add part=video/audio for mux-video/audio
Browse files Browse the repository at this point in the history
  • Loading branch information
gkatsev committed Apr 25, 2022
1 parent 9590787 commit bb6d494
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/mux-audio/src/CustomAudioElement.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ template.innerHTML = `
</style>
<audio crossorigin></audio>
<audio part="audio" crossorigin></audio>
<slot></slot>
`;

Expand Down
2 changes: 1 addition & 1 deletion packages/mux-video/src/CustomVideoElement.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ template.innerHTML = `
</style>
<video crossorigin></video>
<video part="video" crossorigin></video>
<slot></slot>
`;

Expand Down

0 comments on commit bb6d494

Please sign in to comment.