Current File : /home/kelaby89/muzza.fit/wp-content/plugins/wolf-visual-composer/inc/vc-editor-scripts.php
<?php
/**
 * WPBakery Page Builder Extension VC editor scripts
 *
 * @author WolfThemes
 * @category Core
 * @package WolfWPBakeryPageBuilderExtension/Core
 * @version 3.2.8
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

/**
 * Enqueue editor scripts
 *
 * Script available only for VC editor
 */
function wvc_enqueue_vc_editor_scripts() {

	$version = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? time() : WVC_VERSION;

	wp_enqueue_script( 'wvc-vc-editor', WVC_JS . '/admin/vc-editor.js', array(), $version, true );
}

add_action('vc_backend_editor_render', 'wvc_enqueue_vc_editor_scripts');
Hello World !