7.4.33 | Linux x86_64
Server128.199.10.0
Userwww-data (uid:33)
PHP7.4.33 (apache2handler)
Terminal
Upload
Files: /var/www/html/wp-includes/js
View: admin-bar.js
/** * @output wp-includes/js/admin-bar.js */ /** * Admin bar with Vanilla JS, no external dependencies. * * @since 5.3.1 * * @param {Object} document The document object. * @param {Object} window The window object. * @param {Object} navigator The navigator object. * * @return {void} */ ( function( document, window, navigator ) { document.addEventListener( 'DOMContentLoaded', function() { var adminBar = document.getElementById( 'wpadminbar' ), topMenuItems, allMenuItems, adminBarLogout, adminBarSearchForm, shortlink, skipLink, mobileEvent, adminBarSearchInput, i; if ( ! adminBar || ! ( 'querySelectorAll' in adminBar ) ) { return; } topMenuItems = adminBar.querySelectorAll( 'li.menupop' ); allMenuItems = adminBar.querySelectorAll( '.ab-item' ); adminBarLogout = document.querySelector( '#wp-admin-bar-logout a' ); adminBarSearchForm = document.getElementById( 'adminbarsearch' ); shortlink = document.getElementById( 'wp-admin-bar-get-shortlink' ); skipLink = adminBar.querySelector( '.screen-reader-shortcut' ); mobileEvent = /Mobile\/.+Safari/.test( navigator.userAgent ) ? 'touchstart' : 'click'; // Remove nojs class after the DOM is loaded. removeClass( adminBar, 'nojs' ); if ( 'ontouchstart' in window ) { // Remove hover class when the user touches outside the menu items. document.body.addEventListener( mobileEvent, function( e ) { if ( ! getClosest( e.target, 'li.menupop' ) ) { removeAllHoverClass( topMenuItems ); } } ); // Add listener for menu items to toggle hover class by touches. // Remove the callback later for better performance. adminBar.addEventListener( 'touchstart', function bindMobileEvents() { for ( var i = 0; i < topMenuItems.length; i++ ) { topMenuItems[i].addEventListener( 'click', mobileHover.bind( null, topMenuItems ) ); } adminBar.removeEventListener( 'touchstart', bindMobileEvents ); } ); } // Scroll page to top when clicking on the admin bar. adminBar.addEventListener( 'click', scrollToTop ); for ( i = 0; i < topMenuItems.length; i++ ) { // Adds or removes the hover class based on the hover intent. window.hoverintent( topMenuItems[i], addClass.bind( null, topMenuItems[i], 'hover' ), removeClass.bind( null, topMenuItems[i], 'hover' ) ).options( { timeout: 180 } ); // Toggle hover class if the enter key is pressed. topMenuItems[i].addEventListener( 'keydown', toggleHoverIfEnter ); } // Remove hover class if the escape key is pressed. for ( i = 0; i < allMenuItems.length; i++ ) { allMenuItems[i].addEventListener( 'keydown', removeHoverIfEscape ); } if ( adminBarSearchForm ) { adminBarSearchInput = document.getElementById( 'adminbar-search' ); // Adds the adminbar-focused class on focus. adminBarSearchInput.addEventListener( 'focus', function() { addClass( adminBarSearchForm, 'adminbar-focused' ); } ); // Removes the adminbar-focused class on blur. adminBarSearchInput.addEventListener( 'blur', function() { removeClass( adminBarSearchForm, 'adminbar-focused' ); } ); } if ( shortlink ) { shortlink.addEventListener( 'click', clickShortlink ); } // Prevents the toolbar from covering up content when a hash is present in the URL. if ( window.location.hash ) { window.scrollBy( 0, -32 ); } // Clear sessionStorage on logging out. if ( adminBarLogout ) { adminBarLogout.addEventListener( 'click', emptySessionStorage ); } } ); /** * Remove hover class for top level menu item when escape is pressed. * * @since 5.3.1 * * @param {Event} event The keydown event. */ function removeHoverIfEscape( event ) { var wrapper; if ( event.which !== 27 ) { return; } wrapper = getClosest( event.target, '.menupop' ); if ( ! wrapper ) { return; } wrapper.querySelector( '.menupop > .ab-item' ).focus(); removeClass( wrapper, 'hover' ); } /** * Toggle hover class for top level menu item when enter is pressed. * * @since 5.3.1 * * @param {Event} event The keydown event. */ function toggleHoverIfEnter( event ) { var wrapper; // Follow link if pressing Ctrl and/or Shift with Enter (opening in a new tab or window). if ( event.which !== 13 || event.ctrlKey || event.shiftKey ) { return; } if ( !! getClosest( event.target, '.ab-sub-wrapper' ) ) { return; } wrapper = getClosest( event.target, '.menupop' ); if ( ! wrapper ) { return; } event.preventDefault(); if ( hasClass( wrapper, 'hover' ) ) { removeClass( wrapper, 'hover' ); } else { addClass( wrapper, 'hover' ); } } /** * Toggle hover class for mobile devices. * * @since 5.3.1 * * @param {NodeList} topMenuItems All menu items. * @param {Event} event The click event. */ function mobileHover( topMenuItems, event ) { var wrapper; if ( !! getClosest( event.target, '.ab-sub-wrapper' ) ) { return; } event.preventDefault(); wrapper = getClosest( event.target, '.menupop' ); if ( ! wrapper ) { return; } if ( hasClass( wrapper, 'hover' ) ) { removeClass( wrapper, 'hover' ); } else { removeAllHoverClass( topMenuItems ); addClass( wrapper, 'hover' ); } } /** * Handles the click on the Shortlink link in the adminbar. * * @since 3.1.0 * @since 5.3.1 Use querySelector to clean up the function. * * @param {Event} event The click event. * @return {boolean} Returns false to prevent default click behavior. */ function clickShortlink( event ) { var wrapper = event.target.parentNode, input; if ( wrapper ) { input = wrapper.querySelector( '.shortlink-input' ); } if ( ! input ) { return; } // (Old) IE doesn't support preventDefault, and does support returnValue. if ( event.preventDefault ) { event.preventDefault(); } event.returnValue = false; addClass( wrapper, 'selected' ); input.focus(); input.select(); input.onblur = function() { removeClass( wrapper, 'selected' ); }; return false; } /** * Clear sessionStorage on logging out. * * @since 5.3.1 */ function emptySessionStorage() { if ( 'sessionStorage' in window ) { try { for ( var key in sessionStorage ) { if ( key.indexOf( 'wp-autosave-' ) > -1 ) { sessionStorage.removeItem( key ); } } } catch ( er ) {} } } /** * Check if element has class. * * @since 5.3.1 * * @param {HTMLElement} element The HTML element. * @param {string} className The class name. * @return {boolean} Whether the element has the className. */ function hasClass( element, className ) { var classNames; if ( ! element ) { return false; } if ( element.classList && element.classList.contains ) { return element.classList.contains( className ); } else if ( element.className ) { classNames = element.className.split( ' ' ); return classNames.indexOf( className ) > -1; } return false; } /** * Add class to an element. * * @since 5.3.1 * * @param {HTMLElement} element The HTML element. * @param {string} className The class name. */ function addClass( element, className ) { if ( ! element ) { return; } if ( element.classList && element.classList.add ) { element.classList.add( className ); } else if ( ! hasClass( element, className ) ) { if ( element.className ) { element.className += ' '; } element.className += className; } var menuItemToggle = element.querySelector( 'a' ); if ( className === 'hover' && menuItemToggle && menuItemToggle.hasAttribute( 'aria-expanded' ) ) { menuItemToggle.setAttribute( 'aria-expanded', 'true' ); } } /** * Remove class from an element. * * @since 5.3.1 * * @param {HTMLElement} element The HTML element. * @param {string} className The class name. */ function removeClass( element, className ) { var testName, classes; if ( ! element || ! hasClass( element, className ) ) { return; } if ( element.classList && element.classList.remove ) { element.classList.remove( className ); } else { testName = ' ' + className + ' '; classes = ' ' + element.className + ' '; while ( classes.indexOf( testName ) > -1 ) { classes = classes.replace( testName, '' ); } element.className = classes.replace( /^[\s]+|[\s]+$/g, '' ); } var menuItemToggle = element.querySelector( 'a' ); if ( className === 'hover' && menuItemToggle && menuItemToggle.hasAttribute( 'aria-expanded' ) ) { menuItemToggle.setAttribute( 'aria-expanded', 'false' ); } } /** * Remove hover class for all menu items. * * @since 5.3.1 * * @param {NodeList} topMenuItems All menu items. */ function removeAllHoverClass( topMenuItems ) { if ( topMenuItems && topMenuItems.length ) { for ( var i = 0; i < topMenuItems.length; i++ ) { removeClass( topMenuItems[i], 'hover' ); } } } /** * Scrolls to the top of the page. * * @since 3.4.0 * * @param {Event} event The Click event. * * @return {void} */ function scrollToTop( event ) { // Only scroll when clicking on the wpadminbar, not on menus or submenus. if ( event.target && event.target.id !== 'wpadminbar' && event.target.id !== 'wp-admin-bar-top-secondary' ) { return; } try { window.scrollTo( { top: -32, left: 0, behavior: 'smooth' } ); } catch ( er ) { window.scrollTo( 0, -32 ); } } /** * Get closest Element. * * @since 5.3.1 * * @param {HTMLElement} el Element to get parent. * @param {string} selector CSS selector to match. */ function getClosest( el, selector ) { if ( ! window.Element.prototype.matches ) { // Polyfill from https://developer.mozilla.org/en-US/docs/Web/API/Element/matches. window.Element.prototype.matches = window.Element.prototype.matchesSelector || window.Element.prototype.mozMatchesSelector || window.Element.prototype.msMatchesSelector || window.Element.prototype.oMatchesSelector || window.Element.prototype.webkitMatchesSelector || function( s ) { var matches = ( this.document || this.ownerDocument ).querySelectorAll( s ), i = matches.length; while ( --i >= 0 && matches.item( i ) !== this ) { } return i > -1; }; } // Get the closest matching elent. for ( ; el && el !== document; el = el.parentNode ) { if ( el.matches( selector ) ) { return el; } } return null; } } )( document, window, navigator );
NameSizeActions
admin-bar.js10.3KView Edit Del
admin-bar.min.js3.4KView Edit Del
api-request.js3.2KView Edit Del
api-request.min.js1023BView Edit Del
autosave.js21.9KView Edit Del
autosave.min.js5.7KView Edit Del
backbone.js78.6KView Edit Del
backbone.min.js23.7KView Edit Del
clipboard.js26.2KView Edit Del
clipboard.min.js8.8KView Edit Del
codemirror/--
colorpicker.js28.4KView Edit Del
colorpicker.min.js16.1KView Edit Del
comment-reply.js12.2KView Edit Del
comment-reply.min.js3KView Edit Del
crop/--
customize-base.js25.2KView Edit Del
customize-base.min.js7.7KView Edit Del
customize-loader.js7.7KView Edit Del
customize-loader.min.js3.5KView Edit Del
customize-models.js6.7KView Edit Del
customize-models.min.js3.6KView Edit Del
customize-preview-nav-menus.js14.7KView Edit Del
customize-preview-nav-menus.min.js4.9KView Edit Del
customize-preview-widgets.js22.7KView Edit Del
customize-preview-widgets.min.js7.6KView Edit Del
customize-preview.js27.9KView Edit Del
customize-preview.min.js10.8KView Edit Del
customize-selective-refresh.js32.6KView Edit Del
customize-selective-refresh.min.js10.4KView Edit Del
customize-views.js5.1KView Edit Del
customize-views.min.js2.5KView Edit Del
dist/--
heartbeat.js23.5KView Edit Del
heartbeat.min.js5.8KView Edit Del
hoverIntent.js7.1KView Edit Del
hoverIntent.min.js1.5KView Edit Del
hoverintent-js.min.js1.7KView Edit Del
imagesloaded.min.js5.4KView Edit Del
imgareaselect/--
jcrop/--
jquery/--
json2.js31BView Edit Del
json2.min.js35BView Edit Del
masonry.min.js23.6KView Edit Del
mce-view.js25.2KView Edit Del
mce-view.min.js9.5KView Edit Del
media-audiovideo.js24.1KView Edit Del
media-audiovideo.min.js11.8KView Edit Del
media-editor.js28.8KView Edit Del
media-editor.min.js10.8KView Edit Del
media-grid.js26KView Edit Del
media-grid.min.js13KView Edit Del
media-models.js42.5KView Edit Del
media-models.min.js13KView Edit Del
media-views.js266.5KView Edit Del
media-views.min.js108.1KView Edit Del
mediaelement/--
plupload/--
quicktags.js22.1KView Edit Del
quicktags.min.js10.9KView Edit Del
shortcode.js10.5KView Edit Del
shortcode.min.js2.6KView Edit Del
swfobject.js0BView Edit Del
swfobject.min.js35BView Edit Del
swfupload/--
thickbox/--
tinymce/--
tw-sack.js4.9KView Edit Del
tw-sack.min.js3.2KView Edit Del
twemoji.js36.3KView Edit Del
twemoji.min.js19.4KView Edit Del
underscore.js67.3KView Edit Del
underscore.min.js18.6KView Edit Del
utils.js4.6KView Edit Del
utils.min.js1.8KView Edit Del
wp-ajax-response.js3.8KView Edit Del
wp-ajax-response.min.js2.5KView Edit Del
wp-api.js45.9KView Edit Del
wp-api.min.js14.3KView Edit Del
wp-auth-check.js4.3KView Edit Del
wp-auth-check.min.js1.6KView Edit Del
wp-backbone.js14.9KView Edit Del
wp-backbone.min.js3KView Edit Del
wp-custom-header.js10.2KView Edit Del
wp-custom-header.min.js4.3KView Edit Del
wp-embed-template.js6.6KView Edit Del
wp-embed-template.min.js3.1KView Edit Del
wp-embed.js3.1KView Edit Del
wp-embed.min.js1.2KView Edit Del
wp-emoji-loader.js12.9KView Edit Del
wp-emoji-loader.min.js2.8KView Edit Del
wp-emoji-release.min.js22.2KView Edit Del
wp-emoji.js8.6KView Edit Del
wp-emoji.min.js2.8KView Edit Del
wp-list-revisions.js970BView Edit Del
wp-list-revisions.min.js597BView Edit Del
wp-lists.js24.7KView Edit Del
wp-lists.min.js7.3KView Edit Del
wp-pointer.js10KView Edit Del
wp-pointer.min.js3.5KView Edit Del
wp-sanitize.js1.6KView Edit Del
wp-sanitize.min.js402BView Edit Del
wp-util.js4.6KView Edit Del
wp-util.min.js1.4KView Edit Del
wpdialog.js569BView Edit Del
wpdialog.min.js281BView Edit Del
wplink.js20.7KView Edit Del
wplink.min.js11.1KView Edit Del
zxcvbn-async.js821BView Edit Del
zxcvbn-async.min.js351BView Edit Del
zxcvbn.min.js803KView Edit Del