You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 8, 2020. It is now read-only.
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?
The text was updated successfully, but these errors were encountered:
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?
The text was updated successfully, but these errors were encountered: