Sha256: 049400f3822779b566f9754b5e49dc592ca0fe4164f189264909d95dadf37c30
Contents?: true
Size: 456 Bytes
Versions: 58
Compression:
Stored size: 456 Bytes
Contents
/* eslint-disable no-invalid-this */ $(() => { // Foundation requires plugins to be initializated setTimeout(function() { const $tooltips = $(".tooltip") $tooltips. on("mouseover", function() { $(`[data-keep-on-hover='true'][data-toggle='${this.id}']`).foundation("show"); }). on("mouseout", function() { $(`[data-keep-on-hover='true'][data-toggle='${this.id}']`).foundation("hide"); }) }, 0); });
Version data entries
58 entries across 58 versions & 1 rubygems