| Server IP : 123.56.80.60 / Your IP : 216.73.216.148 Web Server : Apache/2.4.54 (Win32) OpenSSL/1.1.1s PHP/7.4.33 mod_fcgid/2.3.10-dev System : Windows NT iZhx3sob14hnz7Z 10.0 build 14393 (Windows Server 2016) i586 User : SYSTEM ( 0) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /site/20241224/spunner/wp-content/plugins/wp-statistics/assets/dev/javascript/components/ |
Upload File : |
/**
* FeedbackBird position
* */
function moveFeedbackBird() {
let windowWidth = window.outerWidth || document.documentElement.clientWidth;
const feedbackBird = document.getElementById('feedback-bird-app');
const feedbackBirdTitle = document.querySelector('.c-fbb-widget__header__title');
const license = document.querySelector('.wps-mobileMenuContent>div:last-child');
const support = document.querySelector('.wps-adminHeader__side');
if (feedbackBird && (document.body.classList.contains('wps_page'))) {
if (windowWidth <= 1030) {
const cutDiv = feedbackBird.parentNode.removeChild(feedbackBird);
license.parentNode.insertBefore(cutDiv, license);
} else {
const cutDiv = feedbackBird.parentNode.removeChild(feedbackBird);
support.appendChild(cutDiv);
}
feedbackBird.style.display = 'block';
feedbackBird.setAttribute('title', feedbackBirdTitle.innerHTML);
}
}
window.addEventListener('resize', moveFeedbackBird);
jQuery(document).ready(function () {
moveFeedbackBird();
const dropdownToggles = document.querySelectorAll('.wps-admin-header__link--has-dropdown');
dropdownToggles.forEach(function (toggle) {
toggle.addEventListener('click', function (e) {
e.preventDefault();
const dropdownMenu = this.nextElementSibling;
if (dropdownMenu) {
dropdownMenu.classList.toggle('is-open');
toggle.classList.toggle('is-open');
}
});
});
document.addEventListener('click', function (e) {
dropdownToggles.forEach(function (toggle) {
const dropdownMenu = toggle.nextElementSibling;
if (dropdownMenu && !toggle.contains(e.target) && !dropdownMenu.contains(e.target)) {
dropdownMenu.classList.remove('is-open');
}
});
});
const targetElement = document.querySelector('.wp-header-end');
const noticeElement = document.querySelector('.notice.notice-warning.update-nag');
// Check if both targetElement and noticeElement exist
if (targetElement && noticeElement) {
// Move the notice element after the target element
targetElement.parentNode.insertBefore(noticeElement, targetElement.nextSibling);
}
});