Update elementor pro
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/*! elementor-pro - v3.33.0 - 03-12-2025 */
|
||||
/*! elementor-pro - v3.35.0 - 11-02-2026 */
|
||||
/******/ (() => { // webpackBootstrap
|
||||
/******/ var __webpack_modules__ = ({
|
||||
|
||||
@@ -1253,17 +1253,12 @@ module.exports = function () {
|
||||
this.mailChimp = new ApiValidations('mailchimp_api_key');
|
||||
this.mailerLite = new ApiValidations('mailerlite_api_key');
|
||||
this.activeCcampaign = new ApiValidations('activecampaign_api_key', 'activecampaign_api_url');
|
||||
jQuery('.e-notice--cta.e-notice--dismissible[data-notice_id="site_mailer_forms_submissions_notice"] a.e-button--cta').on('click', function () {
|
||||
document.querySelector('.e-notice--cta.e-notice--dismissible[data-notice_id="site_mailer_forms_submissions_notice"] a.e-button--cta')?.addEventListener('click', function () {
|
||||
const $notice = $(this).closest('.e-notice');
|
||||
const source = $notice.data('source') || 'sm-submission-install';
|
||||
elementorCommon.ajax.addRequest('elementor_site_mailer_campaign', {
|
||||
data: {
|
||||
source: 'sm-submission-install'
|
||||
}
|
||||
});
|
||||
});
|
||||
document.querySelector('.e-notice--cta.e-notice--dismissible[data-notice_id="send_app_forms_submissions_notice"] a.e-button--cta')?.addEventListener('click', function () {
|
||||
elementorCommon.ajax.addRequest('elementor_send_app_campaign', {
|
||||
data: {
|
||||
source: 'snd-submission-install'
|
||||
source
|
||||
}
|
||||
});
|
||||
});
|
||||
@@ -1357,7 +1352,9 @@ module.exports = function (key, fieldID) {
|
||||
|
||||
module.exports = function () {
|
||||
var EditButton = __webpack_require__(/*! ./admin/edit-button */ "../modules/library/assets/js/admin/edit-button.js");
|
||||
var ShortcodeTextarea = __webpack_require__(/*! ./admin/shortcode-textarea */ "../modules/library/assets/js/admin/shortcode-textarea.js");
|
||||
this.editButton = new EditButton();
|
||||
this.shortcodeTextarea = new ShortcodeTextarea();
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
@@ -1393,6 +1390,39 @@ module.exports = function () {
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "../modules/library/assets/js/admin/shortcode-textarea.js":
|
||||
/*!****************************************************************!*\
|
||||
!*** ../modules/library/assets/js/admin/shortcode-textarea.js ***!
|
||||
\****************************************************************/
|
||||
/***/ ((module) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
|
||||
module.exports = function () {
|
||||
const resizeAllTextareas = () => {
|
||||
const textareas = document.querySelectorAll('.elementor-shortcode-textarea');
|
||||
textareas.forEach(textarea => {
|
||||
textarea.style.height = 'auto';
|
||||
textarea.style.height = textarea.scrollHeight + 5 + 'px';
|
||||
});
|
||||
};
|
||||
const init = () => {
|
||||
resizeAllTextareas();
|
||||
window.addEventListener('resize', () => {
|
||||
resizeAllTextareas();
|
||||
});
|
||||
document.addEventListener('click', event => {
|
||||
if (event.target.matches('button.toggle-row')) {
|
||||
resizeAllTextareas();
|
||||
}
|
||||
});
|
||||
};
|
||||
init();
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "../modules/payments/assets/js/admin.js":
|
||||
/*!**********************************************!*\
|
||||
!*** ../modules/payments/assets/js/admin.js ***!
|
||||
|
||||
Reference in New Issue
Block a user