Subject: | Incorrect docs -- [% USE tooltip = Tooltip(...) %] |
The docs say
[% USE Tooltip(...) %]
[% tooltip('msg') %]
[% tooltip() %]
For that to work you need to change the first line to:
[% USE tooltip = Tooltip(...) %]
otherwise nothing happens.