rotundasoftware / backbone.collectionView

Easily render backbone.js collections. In addition to managing model views, this class supports automatic selection of models in response to clicks, reordering models via drag and drop, and more.
http://rotundasoftware.github.io/backbone.collectionView/
Other
171 stars 27 forks source link

New objects can be added to the 0 index #49

Closed ldementhon closed 10 years ago

ldementhon commented 10 years ago

Objects can now be added to the list with atIndex = 0, making them the first item

Before, adding an item with the 0 index would not pass the check and it would be added to the end of the list. This is very noticeable if you drag many items between connected sortable lists.

dgbeck commented 10 years ago

Thanks for the fix!