文件操作 - admin-bar.js
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/stanleysteamer/public_html/wp-content/plugins/imagify/assets/js/admin-bar.js
编辑文件内容
// Admin bar ======================================================================================= (function($, d, w, undefined) { // eslint-disable-line no-unused-vars, no-shadow, no-shadow-restricted-names var busy = false; $( d ).on( 'mouseenter', '#wp-admin-bar-imagify', function() { var $adminBarProfile, url, $adminBarPricing; if ( true === busy ) { return; } busy = true; $adminBarProfile = $( '#wp-admin-bar-imagify-profile-content' ); $adminBarPricing = $( '#wp-admin-bar-imagify-pricing-content' ); if ( ! $adminBarProfile.is( ':empty' ) ) { return; } if ( w.ajaxurl ) { url = w.ajaxurl; } else { url = w.imagifyAdminBar.ajaxurl; } url += url.indexOf( '?' ) > 0 ? '&' : '?'; $.get( url + 'action=imagify_get_admin_bar_profile&imagifygetadminbarprofilenonce=' + $( '#imagifygetadminbarprofilenonce' ).val() ) .done( function( response ) { var $templates = response.data; $( '#wp-admin-bar-imagify-profile-loading' ).remove(); if ( $templates.admin_bar_pricing ) { $adminBarPricing.html( $templates.admin_bar_pricing ); } else { $adminBarPricing.remove(); } if ( $templates.admin_bar_status ) { $adminBarProfile.html( $templates.admin_bar_status ); } busy = false; } ); } ); } )(jQuery, document, window);
修改文件时间
将文件时间修改为当前时间的前一年
删除文件