Browse Source

Fixed show more bug

master
Igor Zhukov 11 years ago
parent
commit
3a12336eb7
  1. 6
      app/js/directives.js

6
app/js/directives.js

@ -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');
});
}); });
}); });

Loading…
Cancel
Save