Skip to content

Commit

Permalink
chore(sandbox): Fix paths in sandbox files. (#4416)
Browse files Browse the repository at this point in the history
  • Loading branch information
misteroneill authored and gkatsev committed Jun 26, 2017
1 parent 66a0d23 commit c4bbe5d
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions sandbox/combined-tracks.html.example
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
<title>Video.js Sandbox</title>

<!-- Add ES5 shim and sham for IE8 -->
<script src="../build/temp/ie8/videojs-ie8.js"></script>
<script src="../dist/ie8/videojs-ie8.js"></script>

<!-- Load the source files -->
<link href="../build/temp/video-js.css" rel="stylesheet" type="text/css">
<script src="../build/temp/video.js"></script>
<script src="../dist/video.js"></script>
<script src="../node_modules/videojs-flash/dist/videojs-flash.js"></script>

<!-- Set the location of the flash SWF -->
<script>
videojs.options.flash.swf = '../build/temp/video-js.swf';
videojs.options.flash.swf = '../node_modules/videojs-flash/node_modules/videojs-swf/dist/video-js.swf';
</script>
</head>
<body>
Expand Down
6 changes: 3 additions & 3 deletions sandbox/descriptions.html.example
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
<title>Video.js Text Descriptions, Chapters &amp; Captions Example</title>

<!-- Add ES5 shim and sham for IE8 -->
<script src="../build/temp/ie8/videojs-ie8.js"></script>
<script src="../dist/ie8/videojs-ie8.js"></script>

<!-- Load the source files -->
<link href="../build/temp/video-js.css" rel="stylesheet" type="text/css">
<script src="../build/temp/video.js"></script>
<script src="../dist/video.js"></script>

<!-- Set the location of the flash SWF -->
<script>
videojs.options.flash.swf = '../build/temp/video-js.swf';
videojs.options.flash.swf = '../node_modules/videojs-flash/node_modules/videojs-swf/dist/video-js.swf';
</script>

</head>
Expand Down
6 changes: 3 additions & 3 deletions sandbox/flash.html.example
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
<title>Video.js Sandbox</title>

<!-- Add ES5 shim and sham for IE8 -->
<script src="../build/temp/ie8/videojs-ie8.js"></script>
<script src="../dist/ie8/videojs-ie8.js"></script>

<!-- Load the source files -->
<link href="../build/temp/video-js.css" rel="stylesheet" type="text/css">
<script src="../build/temp/video.js"></script>
<script src="../dist/video.js"></script>
<script src="../node_modules/videojs-flash/dist/videojs-flash.js"></script>

<!-- Set the location of the flash SWF -->
<script>
videojs.options.flash.swf = '../build/temp/video-js.swf';
videojs.options.flash.swf = '../node_modules/videojs-flash/node_modules/videojs-swf/dist/video-js.swf';
</script>

</head>
Expand Down
4 changes: 2 additions & 2 deletions sandbox/index.html.example
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>Video.js Sandbox</title>

<!-- Add ES5 shim and sham for IE8 -->
<script src="../build/temp/ie8/videojs-ie8.js"></script>
<script src="../dist/ie8/videojs-ie8.js"></script>

<!-- Load the source files -->
<link href="../build/temp/video-js.css" rel="stylesheet" type="text/css">
Expand All @@ -14,7 +14,7 @@

<!-- Set the location of the flash SWF -->
<script>
videojs.options.flash.swf = '../build/temp/video-js.swf';
videojs.options.flash.swf = '../node_modules/videojs-flash/node_modules/videojs-swf/dist/video-js.swf';
</script>

</head>
Expand Down
6 changes: 3 additions & 3 deletions sandbox/language.html.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<title>VideoJS Languages Demo</title>

<!-- Add ES5 shim and sham for IE8 -->
<script src="../build/temp/ie8/videojs-ie8.js"></script>
<script src="../dist/ie8/videojs-ie8.js"></script>

<!-- Load the source files -->
<link href="../build/temp/video-js.css" rel="stylesheet" type="text/css">
<script src="../build/temp/video.js"></script>
<script src="../dist/video.js"></script>

<!-- Set the location of the flash SWF -->
<script>
videojs.options.flash.swf = '../build/temp/video-js.swf';
videojs.options.flash.swf = '../node_modules/videojs-flash/node_modules/videojs-swf/dist/video-js.swf';
</script>

<!-- Add support for Spanish 'es' -->
Expand Down
6 changes: 3 additions & 3 deletions sandbox/plugin.html.example
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
<title>Video.js Plugin Example</title>

<!-- Add ES5 shim and sham for IE8 -->
<script src="../build/temp/ie8/videojs-ie8.js"></script>
<script src="../dist/ie8/videojs-ie8.js"></script>

<!-- Load the source files -->
<link href="../build/temp/video-js.css" rel="stylesheet" type="text/css">
<script src="../build/temp/video.js"></script>
<script src="../dist/video.js"></script>

<!-- Set the location of the flash SWF -->
<script>
videojs.options.flash.swf = '../build/temp/video-js.swf';
videojs.options.flash.swf = '../node_modules/videojs-flash/node_modules/videojs-swf/dist/video-js.swf';
</script>

</head>
Expand Down

0 comments on commit c4bbe5d

Please sign in to comment.