diff options
| author | Omar Roth <omarroth@hotmail.com> | 2018-11-20 22:58:30 -0600 |
|---|---|---|
| committer | Omar Roth <omarroth@hotmail.com> | 2018-11-20 22:58:30 -0600 |
| commit | d6d73bd33630add1ff0d114fd468685ce88c3795 (patch) | |
| tree | c6cd4f323dea02c2fddde0a5c552d212afccb0c2 | |
| parent | f01cfd0226d31db548c9438db0800e14132b86d0 (diff) | |
| download | invidious-d6d73bd33630add1ff0d114fd468685ce88c3795.tar.gz invidious-d6d73bd33630add1ff0d114fd468685ce88c3795.tar.bz2 invidious-d6d73bd33630add1ff0d114fd468685ce88c3795.zip | |
Fix clickable titles in subscription feed
| -rw-r--r-- | src/invidious/views/components/item.ecr | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/invidious/views/components/item.ecr b/src/invidious/views/components/item.ecr index 5940ae8a..b38e7a5d 100644 --- a/src/invidious/views/components/item.ecr +++ b/src/invidious/views/components/item.ecr @@ -69,9 +69,9 @@ <h5>Shared <%= recode_date(item.published) %> ago</h5> <% end %> <% else %> + <% if env.get?("user") && env.get("user").as(User).preferences.thin_mode %> + <% else %> <a style="width:100%;" href="/watch?v=<%= item.id %>"> - <% if env.get?("user") && env.get("user").as(User).preferences.thin_mode %> - <% else %> <div class="thumbnail"> <img class="thumbnail" src="/vi/<%= item.id %>/mqdefault.jpg"/> <% if env.get? "show_watched" %> @@ -79,21 +79,19 @@ <a onclick="mark_watched(this)" data-id="<%= item.id %>" onmouseenter='this["href"]="javascript:void(0)"' - href="/mark_watched?id=<%= item.id %>"' - > + href="/mark_watched?id=<%= item.id %>"> <i onmouseenter='this.setAttribute("class", "icon ion-ios-eye-off")' onmouseleave='this.setAttribute("class", "icon ion-ios-eye")' - class="icon ion-ios-eye" - > + class="icon ion-ios-eye"> </i> </a> </p> <% end %> <p class="length"><%= recode_length_seconds(item.length_seconds) %></p> </div> - <% end %> - <p><%= item.title %></p> </a> + <% end %> + <p><a href="/watch?v=<%= item.id %>"><%= item.title %></a></p> <% if item.responds_to?(:live_now) && item.live_now %> <p>LIVE</p> <% end %> |
