jquery.slimscroll.init.js 548 B

123456789101112131415161718192021222324
  1. $(document).ready(function() {
  2. //slimScroll Function for NavTop alers
  3. //--------------------------------
  4. $(function () {
  5. $('#messageScroll, #alertScroll, #taskScroll').slimScroll({
  6. height: '150px',
  7. disableFadeOut: true,
  8. touchScrollStep: 50
  9. });
  10. });
  11. //slimScroll Function for large timeline content
  12. //--------------------------------
  13. $(function () {
  14. $('.timeline-content.large').slimScroll({
  15. height: '110px',
  16. alwaysVisible: true,
  17. disableFadeOut: true,
  18. touchScrollStep: 50
  19. });
  20. });
  21. });