summaryrefslogtreecommitdiff
path: root/templates/apps/userprofile
diff options
context:
space:
mode:
authorLeif Johansson <leifj@sunet.se>2010-07-12 15:10:09 +0200
committerLeif Johansson <leifj@sunet.se>2010-07-12 15:10:09 +0200
commitbee4f5f14be8708b85efd5fda6a8c1b03214a08f (patch)
tree532ca7eefff2ec484286fcf1f0511ed5dddff458 /templates/apps/userprofile
parent04fe253aa1b68788d51bf80a67a0d8f26c8046cd (diff)
make the accordeons default closed
Diffstat (limited to 'templates/apps/userprofile')
-rw-r--r--templates/apps/userprofile/home.html8
1 files changed, 6 insertions, 2 deletions
diff --git a/templates/apps/userprofile/home.html b/templates/apps/userprofile/home.html
index d635e53..fa81009 100644
--- a/templates/apps/userprofile/home.html
+++ b/templates/apps/userprofile/home.html
@@ -4,10 +4,14 @@
$(function() {
$("#gravatar").append($.gravatar($('#email').text()));
$("#memberships").accordion({
- header: 'h3'
+ header: 'h3',
+ collapsible: true,
+ active: false
});
$("#names").accordion({
- header: 'h3'
+ header: 'h3',
+ collapsible: true,
+ active: false
});
});
</script>