-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from THEOplayer/feature/conviva-device-metadata
Feature/conviva device metadata
- Loading branch information
Showing
9 changed files
with
64 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@theoplayer/conviva-connector-web": patch | ||
--- | ||
|
||
Fixed an issue where an asset name, provided via a `ConvivaMetadata` object in the `ConvivaConnector` initialization, stops getting reported after a `sourcechange` event. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@theoplayer/conviva-connector-web": minor | ||
--- | ||
|
||
Added `deviceMetadata` property to `ConvivaConfiguration`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,16 +4,23 @@ | |
<meta charset="UTF-8"/> | ||
<title>Connector test page</title> | ||
<link rel="stylesheet" type="text/css" href="./../../../node_modules/theoplayer/ui.css"/> | ||
<script src="./../../../node_modules/theoplayer/THEOplayer.js"></script> | ||
<script src="./../../../node_modules/@convivainc/conviva-js-coresdk/conviva-core-sdk.js"></script> | ||
<script src="./../../dist/conviva-connector.umd.js"></script> | ||
</head> | ||
<body> | ||
<div id="THEOplayer" class="theoplayer-container video-js theoplayer-skin"></div> | ||
<script type="importmap"> | ||
{ | ||
"imports": { | ||
"theoplayer": "./../../../node_modules/theoplayer/THEOplayer.esm.js", | ||
"@convivainc/conviva-js-coresdk": "https://esm.sh/@convivainc/[email protected]?exports=Constants,Analytics" | ||
} | ||
} | ||
</script> | ||
<script type="module"> | ||
import { ConvivaConnector } from "/dist/conviva-connector.esm.js"; | ||
import { Player } from "theoplayer" | ||
import { ConvivaConnector } from "./../../dist/conviva-connector.esm.js"; | ||
import * as Conviva from "@convivainc/conviva-js-coresdk"; | ||
const element = document.querySelector('#THEOplayer'); | ||
const player = new THEOplayer.Player(element, { | ||
const player = new Player(element, { | ||
ui: { | ||
fluid: true | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters