diff --git a/app/js/directives.js b/app/js/directives.js index 94ab79d3..e95e8f9c 100644 --- a/app/js/directives.js +++ b/app/js/directives.js @@ -271,7 +271,7 @@ angular.module('myApp.directives', ['myApp.filters']) $timeout(function () { $(scrollableWrap).trigger('scroll'); - }) + }); }); }); @@ -279,6 +279,10 @@ angular.module('myApp.directives', ['myApp.filters']) onContentLoaded(function () { updateSizes(); scope.$broadcast('ui_message_send'); + + $timeout(function () { + $(scrollableWrap).trigger('scroll'); + }); }); });