Skip to content
This repository was archived by the owner on Sep 8, 2020. It is now read-only.

Cannot get it to save first sort, all other sorts save just fine. #358

Closed
EmptyPockets opened this issue May 9, 2015 · 1 comment
Closed

Comments

@EmptyPockets
Copy link

I'm using ui-sortable with firebase/angularfire to save the data. Here's my setup:

//set options for ui-sortable
$scope.sortableOptions = {
stop: function(event, ui) {
$scope.userList.forEach(function(todo){
todo.sort = $scope.userList.indexOf(todo);
$scope.userList.$save(todo);
});
},
axis: 'y'
}

//the html is like in the example



  • {{task.title}}

When I try to sort the first time, everything will move back to its original position. If I try to sort again after that everything works great. Any ideas?

@thgreasi
Copy link
Contributor

Closed as duplicate of #359

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants