Skip to content

Commit fbbb938

Browse files
committed
Merge branch 'Inventorum-master'
2 parents f260ba0 + fdfb62d commit fbbb938

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build/ng-infinite-scroll.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ mod.directive('infiniteScroll', [
3030
containerBottom = $(container).height() + $(container).scrollTop();
3131
elementBottom = $(elem).offset().top + $(elem).height();
3232
} else {
33-
containerBottom = container.height();
33+
containerBottom = container.outerHeight();
3434
containerTopOffset = 0;
3535
if (container.offset() !== void 0) {
3636
containerTopOffset = container.offset().top;

build/ng-infinite-scroll.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/infinite-scroll.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ mod.directive 'infiniteScroll', ['$rootScope', '$window', '$timeout', 'THROTTLE_
3232
containerBottom = $(container).height() + $(container).scrollTop()
3333
elementBottom = $(elem).offset().top + $(elem).height()
3434
else
35-
containerBottom = container.height()
35+
containerBottom = container.outerHeight()
3636
containerTopOffset = 0
3737
if container.offset() != undefined
3838
containerTopOffset = container.offset().top

0 commit comments

Comments
 (0)