Begin implementing programs management

This commit is contained in:
Eike Foken
2011-08-15 01:03:03 +02:00
parent 639f59378e
commit 020bd13058
9 changed files with 271 additions and 25 deletions

View File

@@ -163,7 +163,18 @@ $(document).ready(function() {
table.trigger('repaginate');
});
$('.sortable').tableDnD();
/*
* Sortable tables
*/
$('.sortable').tableDnD({
dragHandle: 'drag_handle'
});
$('.sortable tr').hover(function() {
$(this).find('td.drag_handle').addClass('drag_handle-show');
}, function() {
$(this).find('td.drag_handle').removeClass('drag_handle-show');
});
/*
* In-place editor