Making WordPress.org

Ticket #4508: 4508.diff

File 4508.diff, 632 bytes (added by garrett-eclipse, 5 years ago)

Patch for the wporg-glossary plugin to switch tippy to click and use hoverintent to trigger the click

  • js/glossary-hovercards.js

     
    1010                        allowHTML: true,
    1111                        arrow: true,
    1212                        theme: 'light',
    13                         delay: [400, 1000],
     13                        trigger: 'click',
    1414                        onShow: function(instance) {
    1515
    1616                                for (var i = 0; i < tooltips.length; i++) {
     
    2323                        boundary: 'window',
    2424                });
    2525
     26                $( element ).hoverIntent(function() {
     27                        $( element ).trigger('click');
     28                }, function() {
     29                        $( element ).trigger('click');
     30                });
     31
    2632                tooltips.push(tooltip);
    2733        } );
    2834} );