Removed index.html from the git ignore file for testing
This commit is contained in:
parent
0138d8c170
commit
323803dc92
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,6 +1,3 @@
|
|||||||
# index.html is used as a test file and should not be copied into git
|
|
||||||
index.html
|
|
||||||
|
|
||||||
# ignore the compiled files
|
# ignore the compiled files
|
||||||
build/
|
build/
|
||||||
|
|
||||||
|
28
index.html
Normal file
28
index.html
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||||
|
<title>Metaunix Player Test</title>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
||||||
|
<script src="build/js/player.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!-- test video player wrapper -->
|
||||||
|
<div class="mup-player"></div>
|
||||||
|
|
||||||
|
<!-- call the player script -->
|
||||||
|
<script>
|
||||||
|
$('.mup-player').MUPlayer({
|
||||||
|
'use_default_css': true,
|
||||||
|
'video_sources': [
|
||||||
|
{
|
||||||
|
'link': 'http://techslides.com/demos/sample-videos/small.ogv',
|
||||||
|
'type': 'video/ogg',
|
||||||
|
}
|
||||||
|
]
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue
Block a user