User tests: Successful: Unsuccessful:
http://joomlacode.org/gf/project/joomla/tracker/?action=TrackerItemEdit&tracker_item_id=31233
This PR is a full move from the old Mootools tooltips (hasTip) to the Bootstrap tooltips (hasTooltip).
This PR also includes:
JHtml::_('behavior.tooltip')
all over the placeTo facilitate this, I have added a method to the JHtml class called tooltipText.
This method concatenates a title and content to the <strong>foo</strong><br />bar
style, like:
JHtml::tooltipText('FOO', 'BAR');
It also prepares the texts to be used as tooltip, like escaping the quotes to html entities, passing the strings through JText, defining whether to return only the title or content, etc.
It also can handle the old foo::bar
style string and convert it.
Pretty much check everything in all pages that can have a tooltip to see if the tooltip displays ok.
Closing because of: #1365