blob: 89803ee2d74eba4b8901bb4d2a570f56a5d7ca84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// ==========================================================================
// Docs example
// ==========================================================================
/*global plyr, templates */
// Setup the player
plyr.setup({
debug: true,
title: "Video demo",
html: templates.controls.render({}),
captions: {
defaultActive: true
}
});
|