1 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 * Functions used in server plugins pages
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)');
12 $tables.find('thead th')
13 .append('<div class="sorticon"></div>');