I am trying to open bootstrap modal but its not working in fullcalendar angular 2.
dayClick: function(date, jsEvent, view) {
(<any>$('#myModal33')).modal('show');
$('#click_date').val(date._d);
}
I get:
WEBPACK_IMPORTED_MODULE_5_jquery(...).modal is not a function
If I remove this import * as $ from 'jquery';
then the modal is working, but I need jQuery as well.