2018-07-06 12:48:46 -04:00
|
|
|
const { isTouchDevice } = Utils;
|
|
|
|
|
|
2015-05-24 21:40:21 +02:00
|
|
|
Mixins.PerfectScrollbar = BlazeComponent.extendComponent({
|
2015-09-03 23:12:46 +02:00
|
|
|
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));
|
|
|
|
|
}
|
2015-09-03 23:12:46 +02:00
|
|
|
},
|
2015-05-24 21:40:21 +02:00
|
|
|
});
|