文件操作 - help-page.js
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/testimonial-free/src/Admin/HelpPage/js/help-page.js
编辑文件内容
; (function ($) { const hash = window.location.hash.replace('#', ''); // Help page tab menu script. $('.sp-real-testimonial-help').on('click', '.sprtf-header-nav-menu a', function(e) { if( $(this).hasClass('active') ) { return; } let tabId = $(this).attr('data-id'); $('.sprtf-header-nav-menu a').each((i, item) => { $(item).removeClass('active'); $('#' + $(item).attr('data-id')).css('display', 'none'); }) $(this).addClass('active'); $('#' + tabId).css('display', 'block'); if('recommended-tab' === tabId){ $('#menu-posts-spt_testimonial ul li').each((i, item) => { $(item).removeClass('current'); }) $('#menu-posts-spt_testimonial ul li:nth-child(8)').addClass('current'); } if('lite-to-pro-tab' === tabId){ $('#menu-posts-spt_testimonial ul li').each((i, item) => { $(item).removeClass('current'); }) $('#menu-posts-spt_testimonial ul li:nth-child(9)').addClass('current'); } if(('get-start-tab' === tabId || 'about-us-tab' === tabId)){ $('#menu-posts-spt_testimonial ul li').each((i, item) => { $(item).removeClass('current'); }) $('#menu-posts-spt_testimonial ul li:nth-child(10)').addClass('current'); } }) $('#menu-posts-spt_testimonial').on('click', 'ul li a', (e) => { var element = e.target.closest('a'); if( 'edit.php?post_type=spt_testimonial&page=tfree_help' === $(element).attr('href') ) { $(element).attr('href', '#get-start'); } setTimeout(() => { var hashValue = window.location.hash.replace('#', ''); if(hashValue) { $('#menu-posts-spt_testimonial ul li').each((i, item) => { $(item).removeClass('current'); }) } if( 'recommended' === hashValue ) { $('.sp-real-testimonial-help .sprtf-header-nav-menu a[data-id="recommended-tab"]').trigger('click'); $(element).parent().addClass('current') } if( 'lite-to-pro' === hashValue ) { $('.sp-real-testimonial-help .sprtf-header-nav-menu a[data-id="lite-to-pro-tab"]').trigger('click'); $(element).parent().addClass('current') } if( 'get-start' === hashValue ) { $('.sp-real-testimonial-help .sprtf-header-nav-menu a[data-id="get-start-tab"]').trigger('click'); $(element).parent().addClass('current') } }, 0); }) if( 'recommended' === hash ) { $('.sp-real-testimonial-help .sprtf-header-nav-menu a[data-id="recommended-tab"]').trigger('click'); $('#menu-posts-spt_testimonial ul li:nth-child(10)').removeClass('current'); $('#menu-posts-spt_testimonial ul li:nth-child(8)').addClass('current'); } if( 'lite-to-pro' === hash ) { $('.sp-real-testimonial-help .sprtf-header-nav-menu a[data-id="lite-to-pro-tab"]').trigger('click'); $('#menu-posts-spt_testimonial ul li:nth-child(10)').removeClass('current'); $('#menu-posts-spt_testimonial ul li:nth-child(9)').addClass('current'); } if( 'about-us' === hash ) { $('.sp-real-testimonial-help .sprtf-header-nav-menu a[data-id="about-us-tab"]').trigger('click'); } $('body').on('click', '.install-now', function(e) { var _this = $(this); var _href = _this.attr('href'); _this.addClass('updating-message').html('Installing...'); $.get(_href, function(data) { location.reload(); }); e.preventDefault(); }); })(jQuery);
修改文件时间
将文件时间修改为当前时间的前一年
删除文件