Commit e5e8e202 by Volker Fröhlich

Fix dashboard sorting in playlists

parent 08f02397
...@@ -132,11 +132,11 @@ function (angular, config, _) { ...@@ -132,11 +132,11 @@ function (angular, config, _) {
}; };
$scope.movePlaylistItemUp = function(playlistItem) { $scope.movePlaylistItemUp = function(playlistItem) {
$scope.moveDashboard(playlistItem, -1); $scope.movePlaylistItem(playlistItem, -1);
}; };
$scope.movePlaylistItemDown = function(playlistItem) { $scope.movePlaylistItemDown = function(playlistItem) {
$scope.moveDashboard(playlistItem, 1); $scope.movePlaylistItem(playlistItem, 1);
}; };
$scope.init(); $scope.init();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment