Skip to content

Commit

Permalink
Merge pull request #850 from videogular/fix/cues-native-controls
Browse files Browse the repository at this point in the history
fix(core): Fix cue points with native controls
  • Loading branch information
Elecash authored Jul 25, 2019
2 parents 3fd74e7 + 33689c2 commit eb9a859
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/vg-cue-points/vg-cue-points.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export class VgCuePoints implements OnInit, OnDestroy, DoCheck {
}

ngDoCheck() {
if (this.ref.nativeElement.cues) {
if (this.ref.nativeElement.track.cues) {
const changes = this.totalCues !== this.ref.nativeElement.track.cues.length;

if (changes) {
Expand Down

0 comments on commit eb9a859

Please sign in to comment.