I'm trying to show tooltips in my fullcalendar app. But if i include bootstrap.css it isn't working. When i run code without it, everything is working.
var calendar = new Calendar(calendarEl, {
events: [
{
title: 'My Event',
start: '2010-01-01',
description: 'This is a cool event'
}
// more events here
],
eventRender: function(info) {
var tooltip = new Tooltip(info.el, {
title: info.event.extendedProps.description,
placement: 'top',
trigger: 'hover',
container: 'body'
});
}
});
with this example code from Fullcalendar.io page and bootstrap.min.css is excluded everything is working.
edit: I forgot to add that i'm using also mdboostrap.css
Edit: Link to Codepen showing the issue: https://codepen.io/anon/pen/WqKvYv. If you delete twitter-bootstrap from CSS options tooltip is showing