chat.js 562 B

1234567891011121314151617181920
  1. $(function() {
  2. "use strict";
  3. const ps5 = new PerfectScrollbar('#ChatBody', {
  4. useBothWheelAxes: true,
  5. suppressScrollX: true,
  6. });
  7. const ps6 = new PerfectScrollbar('.profile-details-main', {
  8. useBothWheelAxes: true,
  9. suppressScrollX: true,
  10. });
  11. const ps7 = new PerfectScrollbar('.main-chat-contacts-slider', {
  12. useBothWheelAxes: true,
  13. suppressScrollY: true,
  14. });
  15. const ps18 = new PerfectScrollbar('.main-chat-2', {
  16. useBothWheelAxes: true,
  17. suppressScrollX: true,
  18. });
  19. });