summaryrefslogtreecommitdiff
path: root/static/js/show.js
blob: 0c2fd8ad98fd5173da63dc4a3e970eeed22b28ac (plain)
1
2
3
4
5
6
7
$(document).ready(function(){
        $(".details_heading").click(function() {
                $(this).next().next().toggle()
        })

        $(".details").hide()
})