Why does not slimScroll plugin get initilised inside bootstrap popover?
I tried different selectors ( all the selectors inside popover ) but it just wont work.
First I was trying to initialise it on multiple popovers. then I tried to make only one popover and initilise slimScroll on it. No chance
this is how I initilise my popover:
jQuery("#bar-notifications").popover({ animation:true, placement: 'bottom', title: 'Notifications!', content: joint, html: true });
and here my slimScroll plugin.
jQuery(".popover .popover-content").slimScroll({
height: '100%'
});
I also tried with just .popover selector.
Maybe there is good answer why they does not work together?