123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- ;(function ($, window, document, undefined) {
- 'use strict';
- Foundation.libs.tooltip = {
- name : 'tooltip',
- version : '5.1.1',
- settings : {
- additional_inheritable_classes : [],
- tooltip_class : '.tooltip',
- append_to: 'body',
- touch_close_text: 'Tap To Close',
- disable_for_touch: false,
- hover_delay: 200,
- tip_template : function (selector, content) {
- return '<span data-selector="' + selector + '" class="'
- + Foundation.libs.tooltip.settings.tooltip_class.substring(1)
- + '">' + content + '<span class="nub"></span></span>';
- }
- },
- cache : {},
- init : function (scope, method, options) {
- Foundation.inherit(this, 'random_str');
- this.bindings(method, options);
- },
- events : function () {
- var self = this,
- S = self.S;
- if (Modernizr.touch) {
- S(document)
- .off('.tooltip')
- .on('click.fndtn.tooltip touchstart.fndtn.tooltip touchend.fndtn.tooltip',
- '[' + this.attr_name() + ']:not(a)', function (e) {
- var settings = $.extend({}, self.settings, self.data_options(S(this)));
- if (!settings.disable_for_touch) {
- e.preventDefault();
- S(settings.tooltip_class).hide();
- self.showOrCreateTip(S(this));
- }
- })
- .on('click.fndtn.tooltip touchstart.fndtn.tooltip touchend.fndtn.tooltip',
- this.settings.tooltip_class, function (e) {
- e.preventDefault();
- S(this).fadeOut(150);
- });
- } else {
- S(document)
- .off('.tooltip')
- .on('mouseenter.fndtn.tooltip mouseleave.fndtn.tooltip',
- '[' + this.attr_name() + ']', function (e) {
- var $this = S(this);
- if (/enter|over/i.test(e.type)) {
- this.timer = setTimeout(function () {
- var tip = self.showOrCreateTip($this);
- }.bind(this), self.settings.hover_delay);
- } else if (e.type === 'mouseout' || e.type === 'mouseleave') {
- clearTimeout(this.timer);
- self.hide($this);
- }
- });
- }
- },
- showOrCreateTip : function ($target) {
- var $tip = this.getTip($target);
- if ($tip && $tip.length > 0) {
- return this.show($target);
- }
- return this.create($target);
- },
- getTip : function ($target) {
- var selector = this.selector($target),
- tip = null;
- if (selector) {
- tip = this.S('span[data-selector="' + selector + '"]' + this.settings.tooltip_class);
- }
- return (typeof tip === 'object') ? tip : false;
- },
- selector : function ($target) {
- var id = $target.attr('id'),
- dataSelector = $target.attr(this.attr_name()) || $target.attr('data-selector');
- if ((id && id.length < 1 || !id) && typeof dataSelector != 'string') {
- dataSelector = 'tooltip' + this.random_str(6);
- $target.attr('data-selector', dataSelector);
- }
- return (id && id.length > 0) ? id : dataSelector;
- },
- create : function ($target) {
- var $tip = $(this.settings.tip_template(this.selector($target), $('<div></div>').html($target.attr('title')).html())),
- classes = this.inheritable_classes($target);
- $tip.addClass(classes).appendTo(this.settings.append_to);
- if (Modernizr.touch) {
- $tip.append('<span class="tap-to-close">'+this.settings.touch_close_text+'</span>');
- }
- $target.removeAttr('title').attr('title','');
- this.show($target);
- },
- reposition : function (target, tip, classes) {
- var width, nub, nubHeight, nubWidth, column, objPos;
- tip.css('visibility', 'hidden').show();
- width = target.data('width');
- nub = tip.children('.nub');
- nubHeight = nub.outerHeight();
- nubWidth = nub.outerHeight();
- if(this.small()) {
- tip.css({'width' : '100%' });
- } else {
- tip.css({'width' : (width) ? width : 'auto'});
- }
-
- objPos = function (obj, top, right, bottom, left, width) {
- return obj.css({
- 'top' : (top) ? top : 'auto',
- 'bottom' : (bottom) ? bottom : 'auto',
- 'left' : (left) ? left : 'auto',
- 'right' : (right) ? right : 'auto'
- }).end();
- };
- objPos(tip, (target.offset().top + target.outerHeight() + 10), 'auto', 'auto', target.offset().left);
- if (this.small()) {
- objPos(tip, (target.offset().top + target.outerHeight() + 10), 'auto', 'auto', 12.5, this.S(this.scope).width());
- tip.addClass('tip-override');
- objPos(nub, -nubHeight, 'auto', 'auto', target.offset().left + 10);
- } else {
- var left = target.offset().left;
- if (Foundation.rtl) {
- left = target.offset().left + target.outerWidth() - tip.outerWidth();
- }
- objPos(tip, (target.offset().top + target.outerHeight() + 10), 'auto', 'auto', left);
- tip.removeClass('tip-override');
- nub.removeAttr( 'style' );
- if (classes && classes.indexOf('tip-top') > -1) {
- objPos(tip, (target.offset().top - tip.outerHeight() - 10), 'auto', 'auto', left)
- .removeClass('tip-override');
- } else if (classes && classes.indexOf('tip-left') > -1) {
- objPos(tip, (target.offset().top + (target.outerHeight() / 2) - (tip.outerHeight() / 2)), 'auto', 'auto', (target.offset().left - tip.outerWidth() - nubHeight))
- .removeClass('tip-override');
- } else if (classes && classes.indexOf('tip-right') > -1) {
- objPos(tip, (target.offset().top + (target.outerHeight() / 2) - (tip.outerHeight() / 2)), 'auto', 'auto', (target.offset().left + target.outerWidth() + nubHeight))
- .removeClass('tip-override');
- }
- }
- tip.css('visibility', 'visible').hide();
- },
- small : function () {
- return matchMedia(Foundation.media_queries.small).matches;
- },
- inheritable_classes : function (target) {
- var inheritables = ['tip-top', 'tip-left', 'tip-bottom', 'tip-right', 'radius', 'round'].concat(this.settings.additional_inheritable_classes),
- classes = target.attr('class'),
- filtered = classes ? $.map(classes.split(' '), function (el, i) {
- if ($.inArray(el, inheritables) !== -1) {
- return el;
- }
- }).join(' ') : '';
- return $.trim(filtered);
- },
- show : function ($target) {
- var $tip = this.getTip($target);
- this.reposition($target, $tip, $target.attr('class'));
- return $tip.fadeIn(150);
- },
- hide : function ($target) {
- var $tip = this.getTip($target);
- return $tip.fadeOut(150);
- },
- // deprecate reload
- reload : function () {
- var $self = $(this);
- return ($self.data('fndtn-tooltips')) ? $self.foundationTooltips('destroy').foundationTooltips('init') : $self.foundationTooltips('init');
- },
- off : function () {
- this.S(this.scope).off('.fndtn.tooltip');
- this.S(this.settings.tooltip_class).each(function (i) {
- $('[' + this.attr_name() + ']').get(i).attr('title', $(this).text());
- }).remove();
- },
- reflow : function () {}
- };
- }(jQuery, this, this.document));
|