Skip to content

Instantly share code, notes, and snippets.

@hubertusanton
Created June 25, 2013 06:51
Show Gist options
  • Save hubertusanton/5856496 to your computer and use it in GitHub Desktop.
Save hubertusanton/5856496 to your computer and use it in GitHub Desktop.
collapsible widgets Silverstripe 3
(function($) {
$('div.usedWidgetsHolder div.Widget h3').entwine({
onclick: function(){
this.nextAll().slideToggle();
}
});
$('div.usedWidgetsHolder div.Widget h3').entwine({
onmatch: function(){
this.nextAll().hide();
}
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment