Skip to content

Instantly share code, notes, and snippets.

@aschiwi
Created June 25, 2013 08:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aschiwi/5856963 to your computer and use it in GitHub Desktop.
Save aschiwi/5856963 to your computer and use it in GitHub Desktop.
Put this in your theme
/**
* @file
* Use accordions in node body.
*/
(function ($) {
Drupal.behaviors.undpaulAccordion = {
attach: function(context) {
$('#accordion').accordion({
active: false,
autoHeight: false,
collapsible: true,
heightStyle: 'content'
});
}
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment