Skip to content

Commit

Permalink
Documentation updates
Browse files Browse the repository at this point in the history
* Added eslint rule `eol-last` and set to `never`
* Ran build to create minified file in `dist`
  • Loading branch information
pklauzinski committed Apr 10, 2018
1 parent 0f69dda commit 7ac1a6a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@
"semi": [
2,
"always"
]
],
"eol-last": ["error", "never"]
}
}
2 changes: 1 addition & 1 deletion dist/jquery.jscroll.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions jquery.jscroll.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@
iTotalHeight = Math.ceil(iTopHeight - innerTop + _$scroll.height() + iContainerTop);

if (!data.waiting && iTotalHeight + _options.padding >= $inner.outerHeight()) {
//data.nextHref = $.trim(data.nextHref + ' ' + _options.contentSelector);
_debug('info', 'jScroll:', $inner.outerHeight() - iTotalHeight, 'from bottom. Loading next request...');
return _load();
}
Expand Down Expand Up @@ -224,4 +223,4 @@
});
};

})(jQuery);
})(jQuery);

0 comments on commit 7ac1a6a

Please sign in to comment.