django-material icon indicating copy to clipboard operation
django-material copied to clipboard

Tooltip not initialized

Open doudz opened this issue 2 years ago • 0 comments

Looks like the tooltip feature is not initialized as the following code doesn't work <a class="btn tooltipped" data-position="bottom" data-tooltip="I am a tooltip">Hover me!</a> Adding the following make it works

$(document).ready(function(){ $('.tooltipped').tooltip(); });

doudz avatar Apr 01 '22 09:04 doudz

django-material contains js initialization code only for used in the frontend components

kmmbvnr avatar Aug 16 '22 03:08 kmmbvnr