diff --git a/app/js/directives.js b/app/js/directives.js index 7cafbea3..2c117fd2 100644 --- a/app/js/directives.js +++ b/app/js/directives.js @@ -312,7 +312,9 @@ angular.module('myApp.directives', ['myApp.filters']) moreNotified = false; $timeout(function () { - $(scrollableWrap).trigger('scroll'); + if (scrollableWrap.scrollHeight != sh) { + $(scrollableWrap).trigger('scroll'); + } }); }); });