wekan/client/components/mixins/perfectScrollbar.js

17 lines
617 B
JavaScript
Raw Normal View History

2018-07-06 12:48:46 -04:00
const { isTouchDevice } = Utils;
Mixins.PerfectScrollbar = BlazeComponent.extendComponent({
onRendered() {
2018-07-06 12:48:46 -04:00
if (!isTouchDevice()) {
const component = this.mixinParent();
const domElement = component.find('.js-perfect-scrollbar');
Ps.initialize(domElement);
2015-08-20 15:54:50 +02:00
2018-07-06 12:48:46 -04:00
// XXX We should create an event map to be consistent with other components
// but since BlazeComponent doesn't merge Mixins events transparently I
// prefered to use a jQuery event (which is what an event map ends up doing)
component.$(domElement).on('mouseenter', () => Ps.update(domElement));
}
},
});