Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / static / im / js / main.js @ 27993be5

History | View | Annotate | Download (413 Bytes)

1
$(function() {
2
        $('table.id-sorted').tablesorter({ sortList: [[0, 0]] });
3

    
4
        $('tr.row-template').hide();
5
        $('div.alert-message').hide();
6
});
7

    
8
$('.needs-confirm').live('click', function() {
9
        $('div.alert-message').show('fast');
10
        $('div.actions').hide('fast');
11
        return false;
12
});
13

    
14
$('.alert-close').live('click', function() {
15
        $('div.alert-message').hide('fast');
16
        $('div.actions').show('fast');
17
        return false;
18
});