mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-21 11:42: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 {
|
.title-label {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
max-height: 2.6em;
|
|
||||||
padding-left: 1.5rem;
|
padding-left: 1.5rem;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
|
||||||
|
|
@ -201,6 +201,8 @@ const Player = ({ urlParams, queryParams }) => {
|
||||||
nextVideo();
|
nextVideo();
|
||||||
|
|
||||||
const deepLinks = player.nextVideo.deepLinks;
|
const deepLinks = player.nextVideo.deepLinks;
|
||||||
|
// eslint-disable-next-line no-console
|
||||||
|
console.log(deepLinks);
|
||||||
if (deepLinks.metaDetailsStreams && deepLinks.player) {
|
if (deepLinks.metaDetailsStreams && deepLinks.player) {
|
||||||
window.location.replace(deepLinks.metaDetailsStreams);
|
window.location.replace(deepLinks.metaDetailsStreams);
|
||||||
window.location.href = deepLinks.player;
|
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 (
|
return (
|
||||||
<div className={classnames(styles['player-container'], { [styles['overlayHidden']]: overlayHidden })}
|
<div className={classnames(styles['player-container'], { [styles['overlayHidden']]: overlayHidden })}
|
||||||
onMouseDown={onContainerMouseDown}
|
onMouseDown={onContainerMouseDown}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue