fixed some css tags on personal booklist to more closely match 'all books page'
parent
d7ea294ab9
commit
573121b9e9
|
@ -149,7 +149,7 @@
|
||||||
<h1><span class="icon icon_"></span>My Booklist</h1>
|
<h1><span class="icon icon_"></span>My Booklist</h1>
|
||||||
</div>
|
</div>
|
||||||
<div class="body">
|
<div class="body">
|
||||||
<ul id="book-list">
|
<ul id="book-list" class="results">
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
19
booklist.js
19
booklist.js
|
@ -39,11 +39,20 @@ const displayUsingApi = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
function makeListItem (id, book) {
|
function makeListItem (id, book) {
|
||||||
const a = `<a href="${book.url}"><h3>${book.title}</h3></a>`
|
const li = `<li class="booklink">
|
||||||
const li = `<li><div id="${id}" class="list-item"><img src="${book.imgSrc}"/>${a}<span>Author: ${book.author}</span>
|
<a class="link" href="${book.url}">
|
||||||
<button title="Remove From Booklist" class="remove-from-booklist"
|
<span id="${id}" class="cell leftcell with-cover">
|
||||||
style="background-color: indianred;">-</button>
|
<img class="cover-thumb" src="${book.imgSrc}"/>
|
||||||
</div></li>`
|
</span>
|
||||||
|
<span class="cell content">
|
||||||
|
<span class="title">${book.title}</span>
|
||||||
|
<span class="subtitle">Author: ${book.author}</span>
|
||||||
|
<button title="Remove From Booklist" class="remove-from-booklist"
|
||||||
|
style="background-color: indianred;">-</button>
|
||||||
|
</span>
|
||||||
|
<span class="hstrut"></span>
|
||||||
|
</a>
|
||||||
|
</li>`
|
||||||
return li
|
return li
|
||||||
}
|
}
|
||||||
})(jQuery) // eslint-disable-line
|
})(jQuery) // eslint-disable-line
|
||||||
|
|
Loading…
Reference in New Issue