diff options
author | Leif Johansson <leifj@sunet.se> | 2012-02-02 15:12:14 +0100 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2012-02-02 15:12:14 +0100 |
commit | dfec2d9ac88dded5047aa52aaede1e4c510953eb (patch) | |
tree | ce8080845ee4dae09cd337efa3df202522d5f8ea /src/templates/apps | |
parent | 8db8fce66e77a343dfbe1fbd27508a1fc94906d2 (diff) |
fix for #-bug
Diffstat (limited to 'src/templates/apps')
-rw-r--r-- | src/templates/apps/room/list.html | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/templates/apps/room/list.html b/src/templates/apps/room/list.html index 8b6f89d..a21848f 100644 --- a/src/templates/apps/room/list.html +++ b/src/templates/apps/room/list.html @@ -5,11 +5,9 @@ {% load tagging_tags %} {% block widgets %} $("#rooms").accordion({ - header: 'h3', - active: true, - active: false, + header: 'h3', event: "click", - collapsible: true, + collapsible: true, navigation: true, animated: true, autoHeight: false @@ -27,7 +25,7 @@ <div id="rooms"> {% for r in rooms %} <div id="{{r.id}}"> - <h3 class="listheader">{{r.name}}</h3> + <h3><a href="#{{r.id}}" class="listheader">{{r.name}}</a></h3> <div> {% tags_for_object r as tags %} <p><a target="_connect" href="{{r|roomurl}}">{{r|roomurl}}<span style="vertical-align: bottom;" class="ui-icon ui-icon-extlink"></span></a></p> |