aboutsummaryrefslogtreecommitdiff
path: root/modules/private/websites/immae/history/assets/js/script.js
blob: 65115d33e17a1d2e1b62975d116de9e15c17aa6d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$(function() {
    var options = {
        padding: 0,
        nextSelector: 'a.next-page:last',
        contentSelector: '.post_list',
        autoTrigger: false,
        debug: true
    };

    $('.post_list').jscroll(options);
    $(document).on('click', '#expand-list', function(){
        $('.post-content').hide();
    });
    $(document).on('click', '#collapse-list', function(){
        $('.post-content').show();
    });
});