diff --git a/js/views/scrollView.js b/js/views/scrollView.js index 883f1c4232..4e67704dd2 100644 --- a/js/views/scrollView.js +++ b/js/views/scrollView.js @@ -372,7 +372,7 @@ ionic.views.Scroll = ionic.views.View.inherit({ return Math.max(self.__content.scrollWidth, self.__content.offsetWidth); }, getContentHeight: function() { - return Math.max(self.__content.scrollHeight, self.__content.offsetHeight); + return Math.max(self.__content.scrollHeight, self.__content.offsetHeight + self.__content.offsetTop); } };