Skip to content

Commit

Permalink
Merge pull request #353 from mediathand/VTTCue-fix
Browse files Browse the repository at this point in the history
root.VTTCue should fall back to VVTCue if not set
  • Loading branch information
rillian committed Nov 16, 2016
2 parents 52bf0a9 + e742965 commit 86d357c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/vttcue.js
Original file line number Diff line number Diff line change
Expand Up @@ -304,5 +304,5 @@
return WebVTT.convertCueToDOMTree(window, this.text);
};

root.VTTCue = VTTCue || root.VTTCue;
root.VTTCue = root.VTTCue || VTTCue;
}(this));

0 comments on commit 86d357c

Please sign in to comment.