Panes appear, and first pane is expanded on load. When I click the other pane titles, they don't open. Only thing that happens is it tries to load http://mysite/drupal/#

I am using the jQuery update module, with jQuery 1.1.3.1.

Comments

davidburns’s picture

This is definitely a bug, I still need to set defaults for the actions.

Till then go into your mini panel layout settings and choose an action, speed, and trigger for every mini panel built.

davidburns’s picture

Here's a patch that will fix the default actions

@@ -68,7 +68,7 @@
     '#type' => 'radios',
     '#title' => t('Action'),
     '#options' => array('click' => t('Click'), 'mouseover' => t('Mouse Over')),
-    '#default_value' => isset($style_settings['action']) ? $style_settings['action'] : 'click',
+    '#default_value' => isset($style_settings['action']) ? $style_settings['action'] : $style_settings['action'] = 'click',
     '#description' => t('Choose what event will make the action occur'),
   );
   $form['effect'] = array(
@@ -75,7 +75,7 @@
     '#type' => 'radios',
     '#title' => t('Effect'),
     '#options' => array('slideDown' => t('Slide Down'), 'fadeIn' => t('Fade In'), 'show' => t('Show')),
-    '#default_value' => isset($style_settings['effect']) ? $style_settings['effect'] : 'slideUp',
+    '#default_value' => isset($style_settings['effect']) ? $style_settings['effect'] : $style_settings['effect'] = 'slideUp',
     '#description' => t('Choose what effect will occur when focus area is triggered'),
   );
   $form['speed'] = array(
@@ -82,7 +82,7 @@
     '#type' => 'radios',
     '#title' => t('Speed'),
     '#options' => array('slow' => t('Slow'), 'normal' => t('Normal'), 'fast' => t('Fast')),
-    '#default_value' => isset($style_settings['speed']) ? $style_settings['speed'] : 'normal',
+    '#default_value' => isset($style_settings['speed']) ? $style_settings['speed'] : $style_settings['speed'] = 'normal',
     '#description' => t('Choose the speed at which the effects will occur'),
   );
   // need to check for alternative to this method of MouseOver Delays
davidburns’s picture

Status: Active » Closed (fixed)

I've updated this to work with the newest version of Panels (beta 3).
Tested w/ fresh install of Drupal, Panels, and Panels accordion

When panels gets a final release I'll do a final release of this module as well.