Updated readme.

Version bump to 2.0.6.
Added JS to remove inline style added by jQueryUI when highlighting form rows.
master
Brandon Taylor 2015-11-18 07:52:18 -05:00
parent 455e5304aa
commit 2dab294b0c
3 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
[![Build Status](https://travis-ci.org/iambrandontaylor/django-admin-sortable.svg?branch=master)](https://travis-ci.org/iambrandontaylor/django-admin-sortable) [![Build Status](https://travis-ci.org/iambrandontaylor/django-admin-sortable.svg?branch=master)](https://travis-ci.org/iambrandontaylor/django-admin-sortable)
Current version: 2.0.5 Current version: 2.0.6
This project makes it easy to add drag-and-drop ordering to any model in This project makes it easy to add drag-and-drop ordering to any model in
Django admin. Inlines for a sortable model may also be made sortable, Django admin. Inlines for a sortable model may also be made sortable,
@ -457,8 +457,8 @@ ordering on top of that just seemed a little much in my opinion.
django-admin-sortable is currently used in production. django-admin-sortable is currently used in production.
### What's new in 2.0.5? ### What's new in 2.0.6?
- Just a minor maintenance release to remove a deprocated template tag in preparation for Django 1.9. Thanks [@itbabu](https://github.com/itbabu)! - Minor bugfix for stacked inlines that was causing blank rows to be displayed below fieldsets that were collapsible. Thanks [@cho-is](https://github.com/cho-is) for reporting.
### Future ### Future

View File

@ -1,4 +1,4 @@
VERSION = (2, 0, 5) # following PEP 386 VERSION = (2, 0, 6) # following PEP 386
DEV_N = None DEV_N = None

View File

@ -40,7 +40,7 @@
type: 'POST', type: 'POST',
data: { indexes : indexes.join(',') }, data: { indexes : indexes.join(',') },
success: function() { success: function() {
ui.item.find('.form-row').effect('highlight', {}, 1000); ui.item.find('.form-row').effect('highlight', {}, 1000).removeAttr('style');
} }
}); });
} }