source: plugins/related/test/basic.html @ 2036

Revision 2036, 938 bytes checked in by jeroen, 17 months ago (diff)

added OVA test to related plugin

  • Property svn:executable set to *
Line 
1<!DOCTYPE html>
2<html lang="en">
3<head>
4
5    <meta charset="UTF-8">
6    <script type="text/javascript" src="assets/jwplayer.min.js"></script>
7    <title>Basic setup</title>
8    <link type="text/css" rel="stylesheet" href="assets/style.css" />
9
10</head>
11<body>
12
13<h2>Basic setup</h2>
14
15<div id="player"></div>
16
17<script type="text/javascript">
18jwplayer("player").setup({
19    file: 'http://content.bitsontherun.com/videos/nPripu9l-327.mp4',
20    flashplayer: 'assets/player.swf',
21    height: 270,
22    image:'http://content.bitsontherun.com/thumbs/nPripu9l-480.jpg',
23    plugins: {
24        '../related.js': {
25            file: 'assets/blender.xml'
26        }
27    },
28    width: 480
29});
30</script>
31
32
33<p>
34    Basic, single file setup. Check on all browsers/devices.<br />
35    The related screen should popup when the video is completed.<br/>
36    When clicking the related video should play.
37</p>
38
39</body>
40</html>
Note: See TracBrowser for help on using the repository browser.