Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(FEC-10709, FEC-10712): player visibility - Auto-pause when player is out of view, Autoplay only when player is in view #395

Merged
merged 28 commits into from
Jan 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
b6c6138
feat(FEC-10709, FEC-10712): player visibility - Auto-pause when playe…
RoyBregman Dec 23, 2020
b184eb8
change playkit dependency to same branch
RoyBregman Dec 23, 2020
5db8949
update dist for kava tests
RoyBregman Dec 23, 2020
c5e43dc
rebuilding dists
RoyBregman Dec 24, 2020
d128e1c
updating dist
RoyBregman Dec 24, 2020
560de2d
onview -> inview
RoyBregman Dec 27, 2020
0385932
reverse remote control changes
RoyBregman Dec 27, 2020
2e35802
removing the floating event listening
RoyBregman Dec 28, 2020
0a81bdf
migrated logic from playkit
RoyBregman Jan 4, 2021
4f338e6
adding backward compatibility to old config
RoyBregman Jan 4, 2021
55ff9d0
code review
RoyBregman Jan 5, 2021
588929a
code review
RoyBregman Jan 5, 2021
fccd53e
moving tab visibility to viewability manager
RoyBregman Jan 6, 2021
584604c
Merge branch 'master' into FEC-10709-autoPause-new-design
RoyBregman Jan 7, 2021
fb1c3da
code review
RoyBregman Jan 9, 2021
2724090
Added defaults to ViewabilityManager
RoyBregman Jan 11, 2021
962e50d
viewability docs
RoyBregman Jan 11, 2021
3796046
ie11 fix
RoyBregman Jan 11, 2021
e5bb1a4
code review
RoyBregman Jan 12, 2021
05678bb
code review
RoyBregman Jan 12, 2021
e2fbd21
Merge branch 'master' into FEC-10709-autoPause-new-design
RoyBregman Jan 12, 2021
623617e
Merge branch 'master' into FEC-10709-autoPause-new-design
RoyBregman Jan 13, 2021
a342e56
prettier
RoyBregman Jan 13, 2021
5298356
Merge branch 'FEC-10709-autoPause-new-design' of https://github.com/k…
RoyBregman Jan 13, 2021
1e20937
code review
RoyBregman Jan 13, 2021
27dfe31
Merge branch 'master' into FEC-10709-autoPause-new-design
OrenMe Jan 14, 2021
0797d37
fix lint (remove redundant import)
RoyBregman Jan 14, 2021
b4816fc
changing dependency of playkit to canary
RoyBregman Jan 14, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions docs/advertisement-layout-management.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

With ad layout config you can create your own ad break timeline using your vast tags.
Ad break can be set as pre, mid and post rolls and each ad break can contain a single vast tag or multiple tags, either as a pod, but also as a [Waterfall](#waterfalling).

> **Important:** [IMA plugin](https://github.com/kaltura/playkit-js-ima) must be active to enable this feature.

## Table of Contents
Expand Down Expand Up @@ -305,6 +306,7 @@ kalturaPlayer.ads.playAdNow(
### Seekbar Cue Points

To display cue points on the seekbar to indicates the ad break positions use `showAdBreakCuePoint` option, as following:

```js
const config = {
...
Expand All @@ -326,6 +328,7 @@ const config = {
```

To customize the cue points style use `adBreakCuePointStyle` option. for example:

```js
const config = {
...
Expand All @@ -337,8 +340,8 @@ const config = {
adBreakCuePointStyle: {
marker: {
width: 10,
color: 'rgb(255, 0, 0)'
}
color: 'rgb(255, 0, 0)'
}
},
adBreaks: [{
position: 60,
Expand All @@ -352,4 +355,4 @@ const config = {
}
```

All style options are listed [here](https://github.com/kaltura/playkit-js-timeline/blob/main/docs/types.md#cuepointoptionsobject).
All style options are listed [here](https://github.com/kaltura/playkit-js-timeline/blob/main/docs/types.md#cuepointoptionsobject).
Loading