jQuery.telligent.evolution.ui.components.tip
UI Component which handles presentation of a tool tip for a given element. The default implementation uses the evolutionTip plugin. Overrides can be provided at the theme level to present tool tips differently.
Example
// Register a tip using a data attribute
<div class="ui-tip" data-tip="Tip Content">An element with a tool tip</a>
// Register a tip using the title attribute
<a href="http://telligent.com" class="ui-tip" title="Tip Content">Telligent</a>
// Register a tip using the alt attribute
<img src="/path/to/img" class="ui-tip" alt="Tip Content" />///
Default Implementation
$.telligent.evolution.ui.components.tip = {
setup: function() { },
add: function(elm, options) {
$(elm).evolutionTip({
attribute: options.tipcontent || $.fn.evolutionTip.defaults.attribute
});
}
};