Skip to content

Commit

Permalink
fix(FEC-13763): Clip Options sent only for Share_embed_copy_click. (#45)
Browse files Browse the repository at this point in the history
### Description of the Changes

Resolves FEC-13763

Co-authored-by: JonathanTGold <jonathan.gold@86@gmail.com>
  • Loading branch information
JonathanTGold and JonathanTGold committed May 23, 2024
1 parent 662f15c commit dc90f21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/share-overlay/share-overlay.js
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ class ShareOverlay extends Component {
*/
_createShareOptions(shareOptionsConfig: ShareOptions): any[] {
return Object.keys(shareOptionsConfig).map(socialName => {
const {shareUrl} = this.props.config;
const shareUrl = this.getShareUrl();
let {embedUrl} = this.props.config;
if (socialName === EMBED) {
const validEmbedUrl = ['embedBaseUrl', 'partnerId', 'uiConfId', 'entryId'].every(prop => {
Expand Down
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<head>
<meta charset="UTF-8">
<title>Title</title>
<title>Share Plugin</title>
<script src="https://cdnapisec.kaltura.com/p/1804331/embedPlaykitJs/uiconf_id/51444112"></script>
<script src="https://unpkg.com/@playkit-js/ui-managers@latest/dist/playkit-ui-managers.js"></script>
<script src="./playkit-share.js"></script>
Expand Down

0 comments on commit dc90f21

Please sign in to comment.