Skip to content
Snippets Groups Projects
Commit cec7e4d4 authored by Devin Carlson's avatar Devin Carlson
Browse files

Issue #3020941 by ron_s, Devin Carlson: Missing group library settings causes...

Issue #3020941 by ron_s, Devin Carlson: Missing group library settings causes JS aggregation to break Ajax
parent 9ce38758
No related branches found
No related tags found
No related merge requests found
......@@ -34,12 +34,15 @@ function dialog_library() {
'version' => VERSION,
'js' => array(
drupal_get_path('module', 'dialog') . '/js/dialog/dialog.js' => array(
'group' => JS_LIBRARY,
'weight' => 2,
),
drupal_get_path('module', 'dialog') . '/js/dialog/dialog.position.js' => array(
'group' => JS_LIBRARY,
'weight' => 2,
),
drupal_get_path('module', 'dialog') . '/js/dialog/dialog.jquery-ui.js' => array(
'group' => JS_LIBRARY,
'weight' => 2,
),
),
......@@ -60,6 +63,7 @@ function dialog_library() {
'version' => VERSION,
'js' => array(
drupal_get_path('module', 'dialog') . '/js/dialog/dialog.ajax.js' => array(
'group' => JS_LIBRARY,
'weight' => 2,
),
),
......@@ -76,11 +80,12 @@ function dialog_library() {
'version' => VERSION,
'js' => array(
drupal_get_path('module', 'dialog') . '/js/drupal/displace.js' => array(
'weight' => 2,
'group' => JS_LIBRARY,
),
),
'dependencies' => array(
array('system', 'jquery'),
array('dialog', 'drupal.debounce'),
),
);
......@@ -90,7 +95,7 @@ function dialog_library() {
'version' => VERSION,
'js' => array(
drupal_get_path('module', 'dialog') . '/js/drupal/debounce.js' => array(
'weight' => 2,
'group' => JS_LIBRARY,
),
),
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment