1
0
mirror of https://github.com/janeczku/calibre-web synced 2025-10-29 22:33:01 +00:00
Code cosmetics
This commit is contained in:
OzzieIsaacs
2017-09-17 07:15:08 +02:00
parent b6f06658a2
commit b6b73d39c2
5 changed files with 42 additions and 80 deletions

View File

@@ -3,8 +3,8 @@
* Created by idalin<dalin.lin@gmail.com>
* Google Books api document: https://developers.google.com/books/docs/v1/using
* Douban Books api document: https://developers.douban.com/wiki/?title=book_v2 (Chinese Only)
*/
/* global _, i18nMsg, tinymce */
*/
/* global _, i18nMsg, tinymce */
var dbResults = [];
var ggResults = [];

View File

@@ -63,13 +63,13 @@ $(function() {
$(".load-more .row").infinitescroll({
debug: false,
navSelector : ".pagination",
// selector for the paged navigation (it will be hidden)
// selector for the paged navigation (it will be hidden)
nextSelector : ".pagination a:last",
// selector for the NEXT link (to page 2)
// selector for the NEXT link (to page 2)
itemSelector : ".load-more .book",
animate : true,
extraScrollPx: 300
// selector for all items you'll retrieve
// selector for all items you'll retrieve
}, function(data) {
$(".load-more .row").isotope( "appended", $(data), null );
});