idx
↑
Path: /homepages/33/d963113317/htdocs/clickandbuilds/PartnercomAgency
[↑]
..
[open]
x
r
.htaccess
[edit]
x
r
.metadata
[open]
x
r
favicon.ico
[edit]
x
r
index.php
[edit]
x
r
license.txt
[edit]
x
r
link.php
[edit]
x
r
php.ini
[edit]
x
r
readme.html
[edit]
x
r
wp-activate.php
[edit]
x
r
wp-admin
[open]
x
r
wp-blog-header.php
[edit]
x
r
wp-comments-post.php
[edit]
x
r
wp-config-sample.php
[edit]
x
r
wp-config.php
[edit]
x
r
wp-content
[open]
x
r
wp-cron.php
[edit]
x
r
wp-includes
[open]
x
r
wp-links-opml.php
[edit]
x
r
wp-load.php
[edit]
x
r
wp-login.php
[edit]
x
r
wp-mail.php
[edit]
x
r
wp-settings.php
[edit]
x
r
wp-signup.php
[edit]
x
r
wp-trackback.php
[edit]
x
r
xmlrpc.php
[edit]
x
r
Edit: wp-tooltip.js
/** * @output wp-admin/js/wp-tooltip.js */ /** * Add focus and hover support for the 'tooltip' type in `wp_tooltip()`. * This script can be made obsolete when support is available for Interest Invokers. */ (() => { const popovers = /** @type {NodeListOf<HTMLSpanElement>} */ ( document.querySelectorAll( '.wp-is-tooltip' ) ); /** @type {ReturnType<typeof setTimeout>} */ let openTimeout; popovers.forEach( function( popover ) { const trigger = /** @type {HTMLButtonElement|HTMLAnchorElement|null} */ ( popover.querySelector( '.wp-tooltip__toggle' ) ); const panel = /** @type {HTMLSpanElement|null} */ ( popover.querySelector( 'span.wp-tooltip__bubble' ) ); if ( ! trigger || ! panel ) { return; } // Show Tooltip Function (with delay to prevent flickering). const showTooltip = () => { clearTimeout( openTimeout ); openTimeout = setTimeout( () => { // Only show if it's not already open. if ( ! panel.matches( ':popover-open' ) ) { // pass the triggering element so implicit position anchors work. panel.showPopover( { source: trigger } ); } }, 300 ); }; // Hide Tooltip Function. const hideTooltip = () => { clearTimeout( openTimeout ); if ( panel.matches( ':popover-open' ) ) { panel.hidePopover(); } }; // Bind Hover and Focus Events. trigger.addEventListener( 'mouseenter', showTooltip ); trigger.addEventListener( 'focus', showTooltip ); trigger.addEventListener( 'mouseleave', hideTooltip ); trigger.addEventListener( 'blur', hideTooltip ); }); })();
save