PluginProbe ʕ •ᴥ•ʔ
Ultimate Addons for Elementor / 1.6.18
Ultimate Addons for Elementor v1.6.18
2.8.8 2.6.0 2.6.1 2.6.2 2.7.0 2.7.1 2.8.0 2.8.1 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 v1.1.3 v1.1.4 trunk 1.0.0 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.2.2 1.3.0 1.3.1 1.4.0 1.4.1 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.10 1.6.11 1.6.12 1.6.13 1.6.14 1.6.15 1.6.16 1.6.17 1.6.18 1.6.19 1.6.2 1.6.20 1.6.21 1.6.22 1.6.23 1.6.24 1.6.25 1.6.26 1.6.27 1.6.28 1.6.29 1.6.3 1.6.30 1.6.31 1.6.32 1.6.33 1.6.34 1.6.35 1.6.36 1.6.37 1.6.38 1.6.39 1.6.4 1.6.40 1.6.41 1.6.42 1.6.43 1.6.44 1.6.45 1.6.46 1.6.47 1.6.5 1.6.6 1.6.7 1.6.8 1.6.9 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.1.0 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.3.0 2.3.1 2.3.2 2.4.0 2.4.1 2.4.2 2.4.3 2.4.4 2.4.5 2.4.6 2.4.7 2.4.8 2.4.9 2.5.0 2.5.1 2.5.2
header-footer-elementor / inc / js / hfe-elementor-pro-compatibility.js
header-footer-elementor / inc / js Last commit date
frontend.js 3 years ago hfe-elementor-pro-compatibility.js 6 years ago
hfe-elementor-pro-compatibility.js
38 lines
1 (function($){
2
3 EHF_EPRO_Compatibility = {
4
5 /**
6 * Binds events for the Elementor Header Footer.
7 *
8 * @since 1.4.0
9 * @access private
10 * @method _bind
11 */
12 init: function() {
13 elementor.on( "document:loaded", function() {
14 setTimeout( function() {
15 jQuery.each( elementorFrontend.documentsManager.documents, function ( index, document ) {
16 var $documentElement = document.$element;
17 var ids_array = JSON.parse( hfe_admin.ids_array );
18 ids_array.forEach( function( item, index ){
19 var elementor_id = $documentElement.data( 'elementor-id' );
20 if( elementor_id == ids_array[index].id ){
21 $documentElement.find( '.elementor-document-handle__title' ).text( elementor.translate('edit_element', [ids_array[index].value] ) );
22 }
23 } );
24 });
25 }, 1000 );
26 });
27 }
28 };
29
30 /**
31 * Initialize EHF_EPRO_Compatibility
32 */
33 $(function(){
34 EHF_EPRO_Compatibility.init();
35 });
36
37 })(jQuery);
38