| Server IP : 213.136.93.164 / Your IP : 216.73.216.68 Web Server : Apache System : Linux m14200.contabo.net 5.14.0-611.54.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed May 6 18:03:03 EDT 2026 x86_64 User : ki692510 ( 1047) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/ki692510/www/wp-content/plugins/wpforms-lite/assets/js/admin/splash/ |
Upload File : |
/* global wpforms_splash_data */
/**
* WPForms What's New.
*
* @since 1.8.7
*/
const WPSplash = window.WPSplash || ( function( document, window, $ ) {
/**
* Public functions and properties.
*
* @since 1.8.7
*
* @type {Object}
*/
const app = {
/**
* Initialize.
*
* @since 1.8.7
*/
init() {
$( app.ready );
},
/**
* Document ready.
*
* @since 1.8.7
*/
ready() {
app.events();
if ( wpforms_splash_data.triggerForceOpen ) {
app.openModal();
}
},
/**
* Events.
*
* @since 1.8.7
*/
events() {
$( document )
.on( 'click', '.wpforms-splash-modal-open', function( e ) {
e.preventDefault();
app.openModal();
} );
},
/**
* Open the modal.
*
* @since 1.8.7
*/
openModal() {
$.alert( {
title: false,
content: wp.template( 'wpforms-splash-modal-content' )(),
icon: false,
closeIcon: true,
boxWidth: '1000px',
theme: 'modern',
useBootstrap: false,
scrollToPreviousElement: false,
buttons: false,
backgroundDismiss: true,
offsetTop: 50,
offsetBottom: 50,
animation: 'opacity',
closeAnimation: 'opacity',
animateFromElement: false,
onOpenBefore() {
$( 'body' ).addClass( 'wpforms-splash-modal' );
$( '.wpforms-challenge-popup-container' ).addClass( 'wpforms-invisible' );
},
onOpen() {
$( '.jconfirm' ).css( 'bottom', 0 );
},
onDestroy() {
$( 'body' ).removeClass( 'wpforms-splash-modal' );
},
} );
},
};
// Provide access to public functions/properties.
return app;
}( document, window, jQuery ) );
WPSplash.init();