From 727529fd04066b469d1adc6e1c68d0a477305c11 Mon Sep 17 00:00:00 2001 From: Tsachi Shlidor Date: Tue, 7 Jan 2025 17:31:51 +0200 Subject: [PATCH] fix: e2e profiles --- docs/profiles.html | 48 ---------------------------------------------- 1 file changed, 48 deletions(-) diff --git a/docs/profiles.html b/docs/profiles.html index ffb14810..e2b2b88a 100644 --- a/docs/profiles.html +++ b/docs/profiles.html @@ -32,12 +32,6 @@ playerWithDefaultProfile.source('sea_turtle'); }, false); - window.addEventListener('load', async function() { - const playerWithCustomProfile = await cloudinary.player('player-custom-profile', { - cloudName: 'prod', - profile: 'myCustomProfile', - }, false); - window.addEventListener('load', async function() { const playerWithCustomProfile = await cloudinary.player('player-custom-profile', { cloudName: 'prod', @@ -60,20 +54,6 @@ playerWithCustomProfileAndOverrides.source('samples/cld-sample-video'); }, false); - - window.addEventListener('load', async function() { - const playerWithCustomProfileAndOverrides = await cloudinary.player('player-custom-profile-overrides', { - cloudName: 'prod', - profile: 'myCustomProfile', - colors: { - base: "#1532a8" - }, - seekThumbnails: false, - aiHighlightsGraph: true, - }); - - playerWithCustomProfileAndOverrides.source('samples/cld-sample-video'); - }, false); @@ -97,34 +77,6 @@
Player with default profile

Example Code:

-
-    
-
-      <video
-        id="player-default-profile"
-        controls
-        autoplay
-        muted
-        class="cld-video-player"
-        width="500">
-      </video>
-
-      
-      
-        window.addEventListener('load', async function() {
-          const playerWithDefaultProfile = await cloudinary.player('player-default-profile', {
-            cloudName: 'demo',
-            profile: 'cld-default',
-          });
-
-          playerWithDefaultProfile.source('sea_turtle');
-        }, false);
-      
-    
- -
Player with custom profile
-

Example Code:

-