Changed the format of the output episodes

This commit is contained in:
zeldaroot 2020-02-19 23:52:19 +02:00
parent 90ae53477e
commit 563b3b3b35
2 changed files with 7 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -68,10 +68,11 @@ index[type].forEach(function (category) { %>
<div style="margin: 0 0 30px 0;color: #fff;font-size: 20px;font-weight: bold;"><%- category.name %></div>
<% var moreEpisodes = false; %>
<% if (category.movies.length) {
category.movies.forEach(function (movie) { %>
<div class="item">
<div class="item" <% if (movie.hide) { moreEpisodes = true; %>style="display:none" data-more-episodes="hide"<% } %>>
<div class="poster">
<div class="sc_info"><% if (movie.season && movie.episode) { %><%- movie.season %> <%- page.l.season %> <%- movie.episode %> <%- page.l.episode %><% if (movie.translate) { %><br><%- movie.translate %><% } %><% } %></div>
<a href="<%- movie.url %>"><img src="<%- movie.poster %>" alt="<%= movie.title %>" title="<%= movie.title %>"></a>
@ -81,6 +82,10 @@ index[type].forEach(function (category) { %>
<% }); } %>
<% if (moreEpisodes) { %>
<div class="moreEpisodes" onclick="var dme = document.querySelectorAll('[data-more-episodes]'); dme && dme.forEach(function(e) {e.style.display='block'});this.style.display='none'"><%- page.l.moreEpisodes %></div>
<% } %>
</div>
<% }); } } } %>