@streamscloud/embeddable 2.7.2 → 2.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -27,7 +27,6 @@ import { StreamPlayerLocalization } from './stream-player-localization';
|
|
|
27
27
|
import { StreamPlayerUiManager } from './ui-manager.svelte';
|
|
28
28
|
import { AppEventsTracker } from '@streamscloud/streams-analytics-collector';
|
|
29
29
|
import { onMount } from 'svelte';
|
|
30
|
-
import StreamsCloudWatermark from '$static/watermark.svg';
|
|
31
30
|
let { streamId, graphqlOrigin, localization: localizationInit, showStreamsCloudWatermark, on } = $props();
|
|
32
31
|
const localization = $derived(new StreamPlayerLocalization(localizationInit));
|
|
33
32
|
let model = $state(null);
|
|
@@ -178,7 +177,6 @@ const onProgress = (pageId, videoId, progress) => {
|
|
|
178
177
|
{#if showStreamsCloudWatermark}
|
|
179
178
|
<div class="stream-player__watermark">
|
|
180
179
|
<a href="https://streamscloud.com/" tabindex="-1" aria-label="none">
|
|
181
|
-
<img src={StreamsCloudWatermark} alt="StreamsCloud" />
|
|
182
180
|
</a>
|
|
183
181
|
</div>
|
|
184
182
|
{/if}
|