Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
novicell/custom_forms / js / info-tooltips.js
Size: Mime:
(function (Drupal) {
  Drupal.behaviors.infoTooltips = {
    attach: function attach(context, settings) {
      const tooltips = document.querySelectorAll('.js-custom-forms-tooltip');
      if (tooltips.length <= 0) {
        return;
      }
      for (let i = 0; i < tooltips.length; i += 1) {
        const tooltip = tooltips[i];
        tippy(tooltip.querySelector('.js-custom-forms-tooltip-trigger'), {
          content: tooltip.querySelector('.js-custom-forms-tooltip-content').innerHTML,
        });
      }
    }
  };
})(Drupal);