Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
themes
/
generatepress
/
assets
/
js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
( function() { 'use strict'; // Check if the browser supports querySelector and addEventListener if ( 'querySelector' in document && 'addEventListener' in window ) { // Get the body element var body = document.body; // Add event listener for pointer interactions with passive option body.addEventListener( 'pointerdown', function() { body.classList.add( 'using-mouse' ); }, { passive: true } ); // Add event listener for keyboard interactions body.addEventListener( 'keydown', function() { body.classList.remove( 'using-mouse' ); }, { passive: true } ); } }() );