mirror of
https://github.com/FreeTubeApp/FreeTube
synced 2025-01-05 17:15:12 +01:00
Lazy load sidebar channel and chapters thumbnails (#3245)
This commit is contained in:
parent
56a1c35113
commit
ab235b79d2
@ -95,7 +95,6 @@
|
||||
|
||||
.channelThumbnail {
|
||||
border-radius: 50%;
|
||||
width: 35px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
|
@ -214,6 +214,9 @@
|
||||
>
|
||||
<img
|
||||
class="channelThumbnail"
|
||||
height="35"
|
||||
width="35"
|
||||
loading="lazy"
|
||||
:src="channel.thumbnail"
|
||||
:alt="isOpen ? '' : channel.name"
|
||||
>
|
||||
|
@ -50,6 +50,7 @@
|
||||
alt=""
|
||||
aria-hidden="true"
|
||||
class="chapterThumbnail"
|
||||
loading="lazy"
|
||||
:src="chapter.thumbnail"
|
||||
>
|
||||
<div class="chapterTimestamp">
|
||||
|
Loading…
Reference in New Issue
Block a user