mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
delete: max-height property
This commit is contained in:
parent
5472b053cc
commit
c646a9c849
2 changed files with 7 additions and 1 deletions
|
|
@ -317,7 +317,6 @@
|
|||
|
||||
.title-label {
|
||||
flex: 1;
|
||||
max-height: 2.6em;
|
||||
padding-left: 1.5rem;
|
||||
font-weight: 600;
|
||||
text-align: center;
|
||||
|
|
|
|||
|
|
@ -201,6 +201,8 @@ const Player = ({ urlParams, queryParams }) => {
|
|||
nextVideo();
|
||||
|
||||
const deepLinks = player.nextVideo.deepLinks;
|
||||
// eslint-disable-next-line no-console
|
||||
console.log(deepLinks);
|
||||
if (deepLinks.metaDetailsStreams && deepLinks.player) {
|
||||
window.location.replace(deepLinks.metaDetailsStreams);
|
||||
window.location.href = deepLinks.player;
|
||||
|
|
@ -598,6 +600,11 @@ const Player = ({ urlParams, queryParams }) => {
|
|||
};
|
||||
}, []);
|
||||
|
||||
// eslint-disable-next-line no-console
|
||||
console.log(player);
|
||||
// eslint-disable-next-line no-console
|
||||
console.log(video);
|
||||
|
||||
return (
|
||||
<div className={classnames(styles['player-container'], { [styles['overlayHidden']]: overlayHidden })}
|
||||
onMouseDown={onContainerMouseDown}
|
||||
|
|
|
|||
Loading…
Reference in a new issue