mirror of
https://github.com/LaQuay/TDTChannels.git
synced 2024-11-22 17:03:24 +01:00
Fix container width
This commit is contained in:
parent
4acec4f2d9
commit
088c6d606b
2 changed files with 9 additions and 2 deletions
|
@ -9,6 +9,7 @@
|
|||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
|
||||
|
||||
<script src="./index.js"></script>
|
||||
<link href="./styles.css" rel="stylesheet" type="text/css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
|
@ -73,7 +74,7 @@
|
|||
<p class="lead">Información de la reproducción</p>
|
||||
Formatos soportados
|
||||
<br>
|
||||
<em>aac</em>, <em>mp3</em>, <em>nsv</em><em>audio/mpeg</em>
|
||||
<em>aac</em>, <em>mp3</em>, <em>nsv</em>, <em>audio/mpeg</em>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -123,7 +124,7 @@
|
|||
player = new Clappr.Player({
|
||||
source: channelToReproduce,
|
||||
parentId: '#video-player',
|
||||
height: '400px',
|
||||
height: '500px',
|
||||
width: '100%',
|
||||
autoPlay: true,
|
||||
});
|
||||
|
@ -175,6 +176,9 @@
|
|||
document.getElementById("video-resolution").innerHTML = "";
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
3
script/public/styles.css
Normal file
3
script/public/styles.css
Normal file
|
@ -0,0 +1,3 @@
|
|||
.container[data-container] {
|
||||
max-width: 100% !important;
|
||||
}
|
Loading…
Reference in a new issue