updated adodb package to work with php 7.1
[openemr.git] / phpmyadmin / js / server_plugins.js
blobdc63827fec5a4f37c188ae3a2d6de9d68df317d1
1 /* vim: set expandtab sw=4 ts=4 sts=4: */
2 /**
3  * Functions used in server plugins pages
4  */
5 AJAX.registerOnload('server_plugins.js', function () {
6         // Make columns sortable, but only for tables with more than 1 data row
7     var $tables = $('#plugins_plugins table:has(tbody tr + tr)');
8     $tables.tablesorter({
9         sortList: [[0, 0]],
10         widgets: ['zebra']
11     });
12     $tables.find('thead th')
13         .append('<div class="sorticon"></div>');
14 });