Browse Source

Fixed show more bug

master
Igor Zhukov 10 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']) @@ -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']) @@ -279,6 +279,10 @@ angular.module('myApp.directives', ['myApp.filters'])
onContentLoaded(function () {
updateSizes();
scope.$broadcast('ui_message_send');
$timeout(function () {
$(scrollableWrap).trigger('scroll');
});
});
});

Loading…
Cancel
Save