Skip to content

Fix cleaning of caption divs

Created by: Gontran-Molotov

When resizing the player while captions are rendered, it may occur that two DIV elements with the same ID are rendered at the same time. Both contain the same caption/text but one is for the previous player size and the other one for the new player size. The cue.onexit() method should remove all child nodes having a given cueID but the for loop used to remove those child nodes does not adjust the index variable when an element with this given ID is found and removed. As a result, the next child node is skipped. This PR is for a small patch that fixes the issue.

Merge request reports