Description
do_action('pixe_enqueue_editor_scripts');
This action is triggered after the editor scripts have been enqueued. Use this action to register additional scripts or data for the editor settings area.
It is typically used to add extra styles and instant controls for an item within the editor.
Examples
add_action('pixe_enqueue_editor_scripts', 'my_custom_editor_script');
function my_custom_editor_script(){
wp_enqueue_script('my-custom-editor-js', '/path/to/script.js', array('jquery'), '1.0.0', true);
}