removing html5 audio
This commit is contained in:
@@ -285,7 +285,10 @@ function renderCoverflow() {
|
|||||||
item.className = 'coverflow-item';
|
item.className = 'coverflow-item';
|
||||||
item.dataset.idx = String(idx);
|
item.dataset.idx = String(idx);
|
||||||
|
|
||||||
const logoUrl = s.logo || (s.raw && (s.raw.logo || s.raw.poster)) || '';
|
const rawLogoUrl = s.logo || (s.raw && (s.raw.logo || s.raw.poster)) || '';
|
||||||
|
const logoUrl = rawLogoUrl && rawLogoUrl.startsWith('http://')
|
||||||
|
? ('https://' + rawLogoUrl.slice('http://'.length))
|
||||||
|
: rawLogoUrl;
|
||||||
if (logoUrl) {
|
if (logoUrl) {
|
||||||
const img = document.createElement('img');
|
const img = document.createElement('img');
|
||||||
img.alt = `${s.name} logo`;
|
img.alt = `${s.name} logo`;
|
||||||
|
|||||||
@@ -363,7 +363,7 @@ body {
|
|||||||
padding: 12px; /* inner spacing from rounded edges */
|
padding: 12px; /* inner spacing from rounded edges */
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
box-shadow: 0 8px 20px rgba(0,0,0,0.35);
|
/*box-shadow: 0 8px 20px rgba(0,0,0,0.35);*/
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 3;
|
z-index: 3;
|
||||||
margin-left:1rem;
|
margin-left:1rem;
|
||||||
|
|||||||
Reference in New Issue
Block a user