????JFIF??x?x????'
Server IP : 104.21.32.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/cwd/wp-content/plugins/wpforms-lite/assets/lite/js/admin/entries/ |
Upload File : |
/* global wpCookies */ /** * Entries list page. */ const WPFormsEntryList = window.WPFormsEntryList || ( function( document, window, $ ) { /** * Public functions and properties. * * @since 1.8.9 * * @type {Object} */ const app = { /** * Initialize the engine. * * @since 1.8.9 */ init() { $( app.ready ); }, /** * Ready. * * @since 1.8.9 */ ready() { app.events(); }, /** * Events. * * @since 1.8.9 */ events() { // Show sample data for entries when the Explore Entries is clicked. $( '#wpforms-entries-explore' ).on( 'click', app.showEntries ); // Hide sample data for entries when the Hide Sample Data is clicked. $( '#wpforms-hide-sample-data' ).on( 'click', app.hideEntries ); // Toggle the action dropdown. $( '#wpforms-list-table-ext-edit-columns-cog' ).on( 'click', app.toggleActionDropdown ); $( '#wpcontent' ).on( 'click', app.hideActionDropdown ); }, /** * Show entries. * * @since 1.8.9 * * @param {Object} e Event object. */ showEntries( e ) { e.preventDefault(); $( '.entries-modal' ).fadeOut( 500, function() { $( '#wpforms-sample-entry-main-notice' ).slideDown( 250 ); $( '#wpforms-entries-list' ).addClass( 'wpforms-entires-sample-view' ); } ); wpCookies.set( 'wpforms_sample_entries', 'true', 2592000 ); // 1 month }, /** * Hide entries. * * @since 1.8.9 * * @param {Object} e Event object. */ hideEntries( e ) { e.preventDefault(); // Bypass animation as this is causing fade in/out issues. $( '#wpforms-sample-entry-main-notice' ).fadeOut( 250, function() { $( '#wpforms-entries-list' ).removeClass( 'wpforms-entires-sample-view' ); $( '.wpforms-sample-entry-notice' ).removeClass( 'wpf-no-animate' ); $( '.entries-modal' ).fadeIn( 500 ); } ); wpCookies.remove( 'wpforms_sample_entries' ); }, /** * Toggle the action dropdown. * * @since 1.8.9 * * @param {Object} e Event object. */ toggleActionDropdown( e ) { e.preventDefault(); e.stopPropagation(); $( this ).parent().toggleClass( 'is_active' ); }, /** * Hide the action dropdown. * * @since 1.8.9 */ hideActionDropdown() { const actionColumn = $( '#wpforms-list-table-ext-edit-columns-cog' ).parent(); if ( actionColumn.hasClass( 'is_active' ) ) { actionColumn.removeClass( 'is_active' ); } }, }; return app; }( document, window, jQuery ) ); // Initialize the engine. WPFormsEntryList.init();