Sha256: 74cd51d436e9bd62619bc67a038bf7e1613dd34e0955e227df7083b709ecf83a
Contents?: true
Size: 713 Bytes
Versions: 9
Compression:
Stored size: 713 Bytes
Contents
import $ from 'jquery' import { init, ready } from '../core/events' // Enable general tooltips and popovers init(function (root) { $(root).find('[data-toggle="tooltip"]').tooltip() $(root).find('[data-toggle="popover"]').popover() }) // Enable navigation tooltips for non-touch devices if (!('ontouchstart' in window)) { ready(function () { $(document).tooltip({ selector: '.app-nav a', trigger: 'hover', placement: 'right', boundary: 'window', template: '<div class="tooltip nav-tooltip" role="tooltip"><div class="arrow"></div><div class="tooltip-inner"></div></div>', title: function () { return $(this).find('.nav-label').text() } }) }) };
Version data entries
9 entries across 9 versions & 1 rubygems