We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0000ec1 commit c182dafCopy full SHA for c182daf
2 files changed
src/components/BootstrapBlazor.Player/BootstrapBlazor.Player.csproj
@@ -1,5 +1,9 @@
1
<Project Sdk="Microsoft.NET.Sdk.Razor">
2
3
+ <PropertyGroup>
4
+ <Version>10.0.1</Version>
5
+ </PropertyGroup>
6
+
7
<PropertyGroup>
8
<PackageTags>Bootstrap Blazor WebAssembly wasm UI Components Video Player</PackageTags>
9
<Description>Bootstrap UI components extensions of Plyr</Description>
src/components/BootstrapBlazor.Player/Player.razor.js
@@ -1,4 +1,4 @@
-import './plyr.js';
+import './plyr.js';
import './hls.js';
import { addLink, addScript } from '../BootstrapBlazor/modules/utility.js';
import Data from '../BootstrapBlazor/modules/data.js';
@@ -106,7 +106,7 @@ export function dispose(id) {
106
const { player } = p;
107
if (player) {
108
player.destroy();
109
- player = null;
+ delete p.player;
110
}
111
112
0 commit comments