Няма описание
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728293031323334353637
  1. /**
  2. * Perfect Scrollbar
  3. */
  4. 'use strict';
  5. document.addEventListener('DOMContentLoaded', function () {
  6. (function () {
  7. const verticalExample = document.getElementById('vertical-example'),
  8. horizontalExample = document.getElementById('horizontal-example'),
  9. horizVertExample = document.getElementById('both-scrollbars-example');
  10. // Vertical Example
  11. // --------------------------------------------------------------------
  12. if (verticalExample) {
  13. new PerfectScrollbar(verticalExample, {
  14. wheelPropagation: false
  15. });
  16. }
  17. // Horizontal Example
  18. // --------------------------------------------------------------------
  19. if (horizontalExample) {
  20. new PerfectScrollbar(horizontalExample, {
  21. wheelPropagation: false,
  22. suppressScrollY: true
  23. });
  24. }
  25. // Both vertical and Horizontal Example
  26. // --------------------------------------------------------------------
  27. if (horizVertExample) {
  28. new PerfectScrollbar(horizVertExample, {
  29. wheelPropagation: false
  30. });
  31. }
  32. })();
  33. });