You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mangaReader/views/chapterShortcutButtonRow.ejs

17 lines
507 B

<div class="shortcutWrapper">
<div>
<p> First:</p>
<%- include('chapterButton.ejs', {chapter:List[0], scanlator, title}) %>
</div>
<%for(let i = 0; i<List.length; i++){if(List[i].continue) { %>
<div>
<p> Continue:</p>
<%- include('chapterButton.ejs', {chapter:List[i], scanlator, title}) %>
</div>
<%}}%>
<div>
<p>Last:</p>
<%- include('chapterButton.ejs', {chapter:List[List.length-1],}) %>
</div>
</div>