[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@18.220.233.2: ~ $
/* global wpforms_admin_notices */

/**
 * WPForms Dismissible Notices.
 *
 * @since 1.6.7.1
 */

'use strict';

var WPFormsAdminNotices = window.WPFormsAdminNotices || ( function( document, window, $ ) {

	/**
	 * Public functions and properties.
	 *
	 * @since 1.6.7.1
	 *
	 * @type {object}
	 */
	var app = {

		/**
		 * Start the engine.
		 *
		 * @since 1.6.7.1
		 */
		init: function() {

			$( app.ready );
		},

		/**
		 * Document ready.
		 *
		 * @since 1.6.7.1
		 */
		ready: function() {

			app.events();
		},

		/**
		 * Dismissible notices events.
		 *
		 * @since 1.6.7.1
		 */
		events: function() {

			$( document ).on(
				'click',
				'.wpforms-notice .notice-dismiss, .wpforms-notice .wpforms-notice-dismiss',
				app.dismissNotice
			);
		},

		/**
		 * Dismiss notice event handler.
		 *
		 * @since 1.6.7.1
		 *
		 * @param {object} e Event object.
		 * */
		dismissNotice: function( e ) {

			const $element = $( e.target );

			if ( ! $element.hasClass( 'wpforms-review-out' ) ) {
				e.preventDefault();
			}

			$element.closest( '.wpforms-notice' ).remove();

			$.post(
				wpforms_admin_notices.ajax_url,
				{
					action: 'wpforms_notice_dismiss',
					nonce:   wpforms_admin_notices.nonce,
					id: 	 ( $element.closest( '.wpforms-notice' ).attr( 'id' ) || '' ).replace( 'wpforms-notice-', '' ),
				}
			);
		},
	};

	return app;

}( document, window, jQuery ) );

// Initialize.
WPFormsAdminNotices.init();

Filemanager

Name Type Size Permission Actions
builder Folder 0755
challenge Folder 0755
education Folder 0755
email Folder 0755
forms Folder 0755
logger Folder 0755
pages Folder 0755
payments Folder 0755
share Folder 0755
splash Folder 0755
admin-editor.js File 1.53 KB 0644
admin-editor.min.js File 993 B 0644
admin-notifications.js File 3.82 KB 0644
admin-notifications.min.js File 2.01 KB 0644
admin.js File 76.11 KB 0644
admin.min.js File 38.15 KB 0644
form-embed-wizard.js File 13.94 KB 0644
form-embed-wizard.min.js File 7.32 KB 0644
notices.js File 1.41 KB 0644
notices.min.js File 656 B 0644