| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/business/mpa/wp-content/plugins/w3-total-cache/pub/js/ |
Upload File : |
/**
* File: feature-counter.js
*
* JavaScript for feature counters.
*
* @since 2.1.0
*
* @global W3TCFeatureShowcaseData
*/
jQuery(function () {
var $adminmenuTopItem = jQuery("#wp-admin-bar-w3tc > a"),
$adminmenuItem = jQuery("#wp-admin-bar-w3tc_feature_showcase a"),
$menuItem = jQuery(
'#toplevel_page_w3tc_dashboard.wp-not-current-submenu a[href="admin.php?page=w3tc_dashboard"] .wp-menu-name',
),
$submenuItem = jQuery(
'#toplevel_page_w3tc_dashboard a[href="admin.php?page=w3tc_feature_showcase"]',
),
markup =
' <span class="awaiting-mod count-' +
W3TCFeatureShowcaseData.unseenCount +
'"><span class="feature-count">' +
W3TCFeatureShowcaseData.unseenCount +
"</span></span>";
if (W3TCFeatureShowcaseData.unseenCount > 0) {
if ($adminmenuItem.length) {
$adminmenuTopItem.append(markup);
$adminmenuItem.append(markup);
}
if ($menuItem.length) {
$menuItem.append(markup);
}
if ($submenuItem.length) {
$submenuItem.append(markup);
}
}
});