bootstrap-popover-extra-placements
bootstrap-popover-extra-placements copied to clipboard
Uncaught TypeError: Cannot call method 'tip' of undefined
I'm getting this error with Bootstrap 3, running with sass. For info, the plugin is being called after bootstrap.min.js (3.1.0) and i got rid of the css call in the js to manually load it with sass. Both elements are well loaded.
I'm calling the popovers like this:
$('input.form-control').popover({
placement: 'bottomLeft',
html: true,
content: function() {
return $(this).next('div.tooltipcs-content').html();
},
delay: { hide: 200 }
});
+1
+1 Same error..
+1