![]() 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/self/root/proc/self/cwd/wp-content/plugins/bdthemes-element-pack/assets/js/ |
(function ($) { 'use strict'; var ElementPackEditor = { init: function () { elementor.channels.editor.on('section:activated', ElementPackEditor.onAnimatedBoxSectionActivated); window.elementor.on('preview:loaded', function () { elementor.$preview[0].contentWindow.ElementPackEditor = ElementPackEditor; ElementPackEditor.onPreviewLoaded(); }); }, onPreviewLoaded: function () { var elementorFrontend = $('#elementor-preview-iframe')[0].contentWindow.elementorFrontend; elementorFrontend.hooks.addAction('frontend/element_ready/widget', function ($scope) { // $scope.find('.bdt-elementor-template-edit-link').on('click', function (event) { // window.open($(this).attr('href')); // }); }); } }; $(window).on('elementor:init', ElementPackEditor.init); window.ElementPackEditor = ElementPackEditor; elementor.hooks.addFilter("panel/elements/regionViews", function (panel) { jQuery(document).ready(function () { jQuery('body').append(`<style>.bdt-pro-unlock-icon:after{right: auto !important; left: 5px !important;}</style>`); }); if (ElementPackConfigPromotional.pro_installed || ElementPackConfigPromotional.promotional_widgets <= 0) return panel; var promotionalWidgetHandler, promotionalWidgets = ElementPackConfigPromotional.promotional_widgets, elementsCollection = panel.elements.options.collection, categories = panel.categories.options.collection, categoriesView = panel.categories.view, elementsView = panel.elements.view, freeCategoryIndex, proWidgets = []; _.each(promotionalWidgets, function (widget, index) { elementsCollection.add({ name: widget.name, title: widget.title, icon: widget.icon, categories: widget.categories, editable: false }) }); elementsCollection.each(function (widget) { "element-pack-pro" === widget.get("categories")[0] && proWidgets.push(widget) }); freeCategoryIndex = categories.findIndex({ name: "element-pack" }); freeCategoryIndex && categories.add({ name: "element-pack-pro", title: "Element Pack Pro", defaultActive: !1, items: proWidgets }, { at: freeCategoryIndex + 1 }); promotionalWidgetHandler = { getWedgetOption: function (name) { return promotionalWidgets.find(function (item) { return item.name == name; }); }, className: function () { var className = 'elementor-element-wrapper'; if (!this.isEditable()) { className += ' elementor-element--promotion'; } return className; }, onMouseDown: function () { void this.constructor.__super__.onMouseDown.call(this); var promotion = this.getWedgetOption(this.model.get("name")); elementor.promotion.showDialog({ title: sprintf(wp.i18n.__('%s', 'elementor'), this.model.get("title")), content: sprintf(wp.i18n.__('Use %s widget and dozens more pro features to extend your toolbox and build sites faster and better.', 'elementor'), this.model.get("title")), targetElement: this.el, position: { blockStart: '-7' }, actionButton: { url: promotion.action_button.url, text: promotion.action_button.text, classes: promotion.action_button.classes || ['elementor-button', 'elementor-button-success'] } }) } } panel.elements.view = elementsView.extend({ childView: elementsView.prototype.childView.extend(promotionalWidgetHandler) }); panel.categories.view = categoriesView.extend({ childView: categoriesView.prototype.childView.extend({ childView: categoriesView.prototype.childView.prototype.childView.extend(promotionalWidgetHandler) }) }); return panel; }) }(jQuery));