![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /proc/thread-self/cwd/wp-content/plugins/bdthemes-element-pack/assets/js/modules/ |
/** * Start mailchimp widget script */ ( function( $, elementor ) { 'use strict'; var widgetMailChimp = function( $scope, $ ) { var $mailChimp = $scope.find('.bdt-mailchimp'); if ( ! $mailChimp.length ) { return; } var langStr = window.ElementPackConfig.mailchimp; $mailChimp.submit(function(){ var mailchimpform = $(this); bdtUIkit.notification({message: '<span bdt-spinner></span> ' + langStr.subscribing, timeout: false, status: 'primary'}); $.ajax({ url:mailchimpform.attr('action'), type:'POST', data:mailchimpform.serialize(), success:function(data){ bdtUIkit.notification.closeAll(); bdtUIkit.notification({message: data, status: 'success'}); // set local storage for coupon reveal // localStorage.setItem("epCouponReveal", 'submitted'); } }); return false; }); return false; }; jQuery(window).on('elementor/frontend/init', function() { elementorFrontend.hooks.addAction( 'frontend/element_ready/bdt-mailchimp.default', widgetMailChimp ); }); }( jQuery, window.elementorFrontend ) ); /** * End mailchimp widget script */