| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348 | ;(function ($, window, document, undefined) {  'use strict';  Foundation.libs.tooltip = {    name : 'tooltip',    version : '5.5.3',    settings : {      additional_inheritable_classes : [],      tooltip_class : '.tooltip',      append_to : 'body',      touch_close_text : 'Tap To Close',      disable_for_touch : false,      hover_delay : 200,      fade_in_duration : 150,      fade_out_duration : 150,      show_on : 'all',      tip_template : function (selector, content) {        return '<span data-selector="' + selector + '" id="' + selector + '" class="'          + Foundation.libs.tooltip.settings.tooltip_class.substring(1)          + '" role="tooltip">' + content + '<span class="nub"></span></span>';      }    },    cache : {},    init : function (scope, method, options) {      Foundation.inherit(this, 'random_str');      this.bindings(method, options);    },    should_show : function (target, tip) {      var settings = $.extend({}, this.settings, this.data_options(target));      if (settings.show_on === 'all') {        return true;      } else if (this.small() && settings.show_on === 'small') {        return true;      } else if (this.medium() && settings.show_on === 'medium') {        return true;      } else if (this.large() && settings.show_on === 'large') {        return true;      }      return false;    },    medium : function () {      return matchMedia(Foundation.media_queries['medium']).matches;    },    large : function () {      return matchMedia(Foundation.media_queries['large']).matches;    },    events : function (instance) {      var self = this,          S = self.S;      self.create(this.S(instance));      function _startShow(elt, $this, immediate) {        if (elt.timer) {          return;        }        if (immediate) {          elt.timer = null;          self.showTip($this);        } else {          elt.timer = setTimeout(function () {            elt.timer = null;            self.showTip($this);          }.bind(elt), self.settings.hover_delay);        }      }      function _startHide(elt, $this) {        if (elt.timer) {          clearTimeout(elt.timer);          elt.timer = null;        }        self.hide($this);      }      $(this.scope)        .off('.tooltip')        .on('mouseenter.fndtn.tooltip mouseleave.fndtn.tooltip touchstart.fndtn.tooltip MSPointerDown.fndtn.tooltip',          '[' + this.attr_name() + ']', function (e) {          var $this = S(this),              settings = $.extend({}, self.settings, self.data_options($this)),              is_touch = false;          if (Modernizr.touch && /touchstart|MSPointerDown/i.test(e.type) && S(e.target).is('a')) {            return false;          }          if (/mouse/i.test(e.type) && self.ie_touch(e)) {            return false;          }                    if ($this.hasClass('open')) {            if (Modernizr.touch && /touchstart|MSPointerDown/i.test(e.type)) {              e.preventDefault();            }            self.hide($this);          } else {            if (settings.disable_for_touch && Modernizr.touch && /touchstart|MSPointerDown/i.test(e.type)) {              return;            } else if (!settings.disable_for_touch && Modernizr.touch && /touchstart|MSPointerDown/i.test(e.type)) {              e.preventDefault();              S(settings.tooltip_class + '.open').hide();              is_touch = true;              // close other open tooltips on touch              if ($('.open[' + self.attr_name() + ']').length > 0) {               var prevOpen = S($('.open[' + self.attr_name() + ']')[0]);               self.hide(prevOpen);              }            }            if (/enter|over/i.test(e.type)) {              _startShow(this, $this);            } else if (e.type === 'mouseout' || e.type === 'mouseleave') {              _startHide(this, $this);            } else {              _startShow(this, $this, true);            }          }        })        .on('mouseleave.fndtn.tooltip touchstart.fndtn.tooltip MSPointerDown.fndtn.tooltip', '[' + this.attr_name() + '].open', function (e) {          if (/mouse/i.test(e.type) && self.ie_touch(e)) {            return false;          }          if ($(this).data('tooltip-open-event-type') == 'touch' && e.type == 'mouseleave') {            return;          } else if ($(this).data('tooltip-open-event-type') == 'mouse' && /MSPointerDown|touchstart/i.test(e.type)) {            self.convert_to_touch($(this));          } else {            _startHide(this, $(this));          }        })        .on('DOMNodeRemoved DOMAttrModified', '[' + this.attr_name() + ']:not(a)', function (e) {          _startHide(this, S(this));        });    },    ie_touch : function (e) {      // How do I distinguish between IE11 and Windows Phone 8?????      return false;    },    showTip : function ($target) {      var $tip = this.getTip($target);      if (this.should_show($target, $tip)) {        return this.show($target);      }      return;    },    getTip : function ($target) {      var selector = this.selector($target),          settings = $.extend({}, this.settings, this.data_options($target)),          tip = null;      if (selector) {        tip = this.S('span[data-selector="' + selector + '"]' + settings.tooltip_class);      }      return (typeof tip === 'object') ? tip : false;    },    selector : function ($target) {      var dataSelector = $target.attr(this.attr_name()) || $target.attr('data-selector');      if (typeof dataSelector != 'string') {        dataSelector = this.random_str(6);        $target          .attr('data-selector', dataSelector)          .attr('aria-describedby', dataSelector);      }      return dataSelector;    },    create : function ($target) {      var self = this,          settings = $.extend({}, this.settings, this.data_options($target)),          tip_template = this.settings.tip_template;      if (typeof settings.tip_template === 'string' && window.hasOwnProperty(settings.tip_template)) {        tip_template = window[settings.tip_template];      }      var $tip = $(tip_template(this.selector($target), $('<div></div>').html($target.attr('title')).html())),          classes = this.inheritable_classes($target);      $tip.addClass(classes).appendTo(settings.append_to);      if (Modernizr.touch) {        $tip.append('<span class="tap-to-close">' + settings.touch_close_text + '</span>');        $tip.on('touchstart.fndtn.tooltip MSPointerDown.fndtn.tooltip', function (e) {          self.hide($target);        });      }      $target.removeAttr('title').attr('title', '');    },    reposition : function (target, tip, classes) {      var width, nub, nubHeight, nubWidth, objPos;      tip.css('visibility', 'hidden').show();      width = target.data('width');      nub = tip.children('.nub');      nubHeight = nub.outerHeight();      nubWidth = nub.outerWidth();      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();      };            var o_top = target.offset().top;      var o_left = target.offset().left;      var outerHeight = target.outerHeight();      objPos(tip, (o_top + outerHeight + 10), 'auto', 'auto', o_left);      if (this.small()) {        objPos(tip, (o_top + outerHeight + 10), 'auto', 'auto', 12.5, $(this.scope).width());        tip.addClass('tip-override');        objPos(nub, -nubHeight, 'auto', 'auto', o_left);      } else {                if (Foundation.rtl) {          nub.addClass('rtl');          o_left = o_left + target.outerWidth() - tip.outerWidth();        }        objPos(tip, (o_top + outerHeight + 10), 'auto', 'auto', o_left);        // reset nub from small styles, if they've been applied        if (nub.attr('style')) {          nub.removeAttr('style');        }                tip.removeClass('tip-override');                var tip_outerHeight = tip.outerHeight();                if (classes && classes.indexOf('tip-top') > -1) {          if (Foundation.rtl) {            nub.addClass('rtl');          }          objPos(tip, (o_top - tip_outerHeight), 'auto', 'auto', o_left)            .removeClass('tip-override');        } else if (classes && classes.indexOf('tip-left') > -1) {          objPos(tip, (o_top + (outerHeight / 2) - (tip_outerHeight / 2)), 'auto', 'auto', (o_left - tip.outerWidth() - nubHeight))            .removeClass('tip-override');          nub.removeClass('rtl');        } else if (classes && classes.indexOf('tip-right') > -1) {          objPos(tip, (o_top + (outerHeight / 2) - (tip_outerHeight / 2)), 'auto', 'auto', (o_left + target.outerWidth() + nubHeight))            .removeClass('tip-override');          nub.removeClass('rtl');        }      }      tip.css('visibility', 'visible').hide();    },    small : function () {      return matchMedia(Foundation.media_queries.small).matches &&        !matchMedia(Foundation.media_queries.medium).matches;    },    inheritable_classes : function ($target) {      var settings = $.extend({}, this.settings, this.data_options($target)),          inheritables = ['tip-top', 'tip-left', 'tip-bottom', 'tip-right', 'radius', 'round'].concat(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);    },    convert_to_touch : function ($target) {      var self = this,          $tip = self.getTip($target),          settings = $.extend({}, self.settings, self.data_options($target));      if ($tip.find('.tap-to-close').length === 0) {        $tip.append('<span class="tap-to-close">' + settings.touch_close_text + '</span>');        $tip.on('click.fndtn.tooltip.tapclose touchstart.fndtn.tooltip.tapclose MSPointerDown.fndtn.tooltip.tapclose', function (e) {          self.hide($target);        });      }      $target.data('tooltip-open-event-type', 'touch');    },    show : function ($target) {      var $tip = this.getTip($target);      if ($target.data('tooltip-open-event-type') == 'touch') {        this.convert_to_touch($target);      }      this.reposition($target, $tip, $target.attr('class'));      $target.addClass('open');      $tip.fadeIn(this.settings.fade_in_duration);    },    hide : function ($target) {      var $tip = this.getTip($target);      $tip.fadeOut(this.settings.fade_out_duration, function () {        $tip.find('.tap-to-close').remove();        $tip.off('click.fndtn.tooltip.tapclose MSPointerDown.fndtn.tapclose');        $target.removeClass('open');      });    },    off : function () {      var self = this;      this.S(this.scope).off('.fndtn.tooltip');      this.S(this.settings.tooltip_class).each(function (i) {        $('[' + self.attr_name() + ']').eq(i).attr('title', $(this).text());      }).remove();    },    reflow : function () {}  };}(jQuery, window, window.document));
 |