From a5c03e53fc70eb25f3537ae2497a81cfa4dc05eb Mon Sep 17 00:00:00 2001 From: Ruben Ramirez Date: Thu, 3 Apr 2025 23:01:34 -0500 Subject: [PATCH] added 'jquery-ui-draggable' to the dependency array for the quiztech-builder-script in quiztech_theme/functions.php --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index a9900c0..6d15aa2 100644 --- a/functions.php +++ b/functions.php @@ -59,7 +59,7 @@ function quiztech_theme_enqueue_scripts() { wp_enqueue_script( 'quiztech-builder-script', // Unique handle $builder_script_url, - array( 'jquery', 'jquery-ui-sortable' ), // Depends on jQuery and Sortable for drag/drop later + array( 'jquery', 'jquery-ui-sortable', 'jquery-ui-draggable' ), // Added draggable dependency $builder_version, true // Load in footer );