| 1 |
<?php |
| 2 |
|
| 3 |
namespace UltimatePostKit\Includes\LiveCopy; |
| 4 |
|
| 5 |
|
| 6 |
if (!defined('ABSPATH')) exit; // Exit if accessed directly |
| 7 |
class BdThemes_Live_Copy { |
| 8 |
|
| 9 |
function __construct() { |
| 10 |
add_action('elementor/editor/after_enqueue_scripts', [$this, 'live_copy_enqueue']); |
| 11 |
} |
| 12 |
|
| 13 |
public function live_copy_enqueue() { |
| 14 |
wp_enqueue_script('bdt-live-copy-scripts', BDTUPK_URL . 'includes/live-copy/assets/bdt-live-copy.js', ['jquery', 'elementor-editor'], BDTUPK_VER, true); |
| 15 |
} |
| 16 |
} |
| 17 |
new BdThemes_Live_Copy(); |
| 18 |
|