Fixed show more bug

This commit is contained in:
Igor Zhukov 2014-03-20 22:16:11 +04:00
parent 15f3882637
commit 3a12336eb7

View File

@ -271,7 +271,7 @@ angular.module('myApp.directives', ['myApp.filters'])
$timeout(function () { $timeout(function () {
$(scrollableWrap).trigger('scroll'); $(scrollableWrap).trigger('scroll');
}) });
}); });
}); });
@ -279,6 +279,10 @@ angular.module('myApp.directives', ['myApp.filters'])
onContentLoaded(function () { onContentLoaded(function () {
updateSizes(); updateSizes();
scope.$broadcast('ui_message_send'); scope.$broadcast('ui_message_send');
$timeout(function () {
$(scrollableWrap).trigger('scroll');
});
}); });
}); });