I do meteor add bootstrap in the console, does this add the bootstrap tooltip javascript? If not how do I add it?
I do meteor add bootstrap in the console, does this add the bootstrap tooltip
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes the bootstrap plugin includes the tooltip! I use it myself. A thing to note with bootstrap’s tooltip is that it cannot run on HTML alone like many of the other features due to performance issues. Each tooltip has to be manually initialized, You can use
.tooltip()with jquery on the element you want to tooltip-ifyFor instance in your template in your html file
And as use the below in the javascript file to initialize the tooltip
Don’t put the
<script>tags in your template as would be suggested on various tutorials as meteor handles this in the javascript files