mirror of
https://github.com/jazzband/django-admin-sortable.git
synced 2026-04-15 12:21:08 +00:00
Merge pull request #19 from ionelmc/master
Minor fixes for tabular inline
This commit is contained in:
commit
4812a81bb0
3 changed files with 4 additions and 5 deletions
|
|
@ -0,0 +1,3 @@
|
|||
.tabular .sortable:not(.add-row) {
|
||||
cursor: move;
|
||||
}
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
.tabular .sortable
|
||||
{
|
||||
cursor: move;
|
||||
}
|
||||
|
|
@ -7,7 +7,7 @@ jQuery(function($){
|
|||
axis : 'y',
|
||||
containment : 'parent',
|
||||
tolerance : 'pointer',
|
||||
items : 'tr',
|
||||
items : 'tr:not(.add-row)',
|
||||
stop : function(event, ui)
|
||||
{
|
||||
var indexes = Array();
|
||||
|
|
|
|||
Loading…
Reference in a new issue