文件操作 - global.js
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/personalchoicespa/public_html/wp-content/plugins/wp-smush-pro/_src/js/global.js
编辑文件内容
import '../scss/common.scss'; import DeactivationSurvey from './modules/deactivation-survey'; import GlobalTracking from './global-tracking'; /* global ajaxurl */ document.addEventListener( 'DOMContentLoaded', function() { // Deactivation survey modal. ( new DeactivationSurvey() ).init(); // Global Trackings. ( new GlobalTracking() ).init(); // Dismiss notices. const dismissNoticeButton = document.querySelectorAll( '.smush-dismissible-notice .smush-dismiss-notice-button' ); dismissNoticeButton.forEach((button) => { button.addEventListener('click', handleDismissNotice); }); function handleDismissNotice(event) { event.preventDefault(); const button = event.target; const notice = button.closest('.smush-dismissible-notice'); const key = notice.getAttribute('data-key'); dismissNotice( key, notice ); } function dismissNotice( key, notice ) { const xhr = new XMLHttpRequest(); xhr.open( 'POST', ajaxurl + '?action=smush_dismiss_notice&key=' + key + '&_ajax_nonce=' + smush_global.nonce, true ); xhr.onload = () => { if (notice) { notice.querySelector('button.notice-dismiss').dispatchEvent(new MouseEvent('click', { view: window, bubbles: true, cancelable: true })); } }; xhr.send(); } const dismissCacheNoticeButton = document.querySelector( '#wp-smush-cache-notice .smush-dismiss-notice-button' ); if ( dismissCacheNoticeButton ) { dismissCacheNoticeButton.addEventListener( 'click', function() { const xhr = new XMLHttpRequest(); xhr.open( 'POST', ajaxurl + '?action=smush_dismiss_cache_notice&_ajax_nonce=' + smush_global.nonce, true ); xhr.onload = () => { window.SUI.closeNotice( 'wp-smush-cache-notice' ); }; xhr.send(); } ); } // Show header notices. const handleHeaderNotice = () => { const headerNotice = document.querySelector('.wp-smush-dismissible-header-notice'); if ( ! headerNotice || ! headerNotice.id ) { return; } const { dismissKey, message } = headerNotice.dataset; if ( ! message ) { return; } headerNotice.onclick = (e) => { const classList = e.target.classList; const isCloseAndDismissLink = classList && classList.contains( 'smush-close-and-dismiss-notice' ); const shouldDismissNotice = classList && ( isCloseAndDismissLink || classList.contains('sui-icon-check') || classList.contains('sui-button-icon') ); if ( ! shouldDismissNotice ) { return; } if ( dismissKey ) { dismissNotice( dismissKey ); } if ( isCloseAndDismissLink ) { window.SUI.closeNotice( headerNotice.id ); } } const noticeOptions = { type: 'warning', icon: 'info', dismiss: { show: true, label: wp_smush_msgs.noticeDismiss, tooltip: wp_smush_msgs.noticeDismissTooltip, }, }; window.SUI.openNotice( headerNotice.id, message, noticeOptions ); } handleHeaderNotice(); });
修改文件时间
将文件时间修改为当前时间的前一年
删除文件