/home/bonphmya/topcontenedor.com/wp-content/themes/digitaz/assets/js/frontend/text-editor.js
(function ($) {
	'use strict';

	function text_editor_hover() {
		let $text_hover = $('.text-editor-hover');

		$text_hover.each(function () {
			let $text = $(this).find('.elementor-text-editor > *').text();

			$(this).find('.elementor-text-editor  > *').attr('data-hover',$text);
		});

	}

	text_editor_hover();

})(jQuery);