vendor/assets/javascripts/base/_tooltip.js in active_frontend-14.0.35 vs vendor/assets/javascripts/base/_tooltip.js in active_frontend-14.0.36

- old
+ new

@@ -515,15 +515,15 @@ // TOOLTIP DATA-API // ================ $(document).on('ready.bs.tooltip.data-api', function () { - $('[data-toggle="tooltip"]').each(function () { + $('[data-hover="tooltip"]').each(function () { var $this = $(this); if ($this.data('tooltip')) return; Plugin.call($this, $this.data()); }); - }).on('hover.bs.tooltip.data-api', '[data-toggle="tooltip"]', function (e) { + }).on('hover.bs.tooltip.data-api', '[data-hover="tooltip"]', function (e) { var $this = $(this); if ($this.data('tooltip')) return; Plugin.call($this, $this.data()); });