Skip to content

Commit

Permalink
Pass sorted collection to onItemMoveAction
Browse files Browse the repository at this point in the history
  • Loading branch information
zacstewart committed Oct 8, 2015
1 parent d524d8f commit 4bba1c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon/components/sortable-items.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ var SortableItems = Ember.Component.extend({
}


this.sendAction('onItemMoveAction', item, evt.oldIndex, evt.newIndex);
this.sendAction('onItemMoveAction', item, evt.oldIndex, evt.newIndex, collection);

});
},
Expand Down

0 comments on commit 4bba1c1

Please sign in to comment.