File: main.js

package info (click to toggle)
satpy 0.59.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 39,296 kB
  • sloc: python: 93,630; xml: 3,343; makefile: 146; javascript: 23
file content (24 lines) | stat: -rw-r--r-- 511 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
$(document).ready( function () {
    $('table.datatable').DataTable( {
    "paging": true,
    "pageLength": 15,
    "layout": {
        'topStart': 'info',
        'topEnd': 'search',
        'bottomStart': null,
        'bottomEnd': 'paging'
    },
    "order": [[0, 'asc']]
} );

    $('table.area-table').DataTable( {
    "paging": true,
    "pageLength": 15,
    "layout": {
        'topStart': 'info',
        'topEnd': 'search',
        'bottomEnd': 'paging',
        'bottomStart': null
    }
} );
} );