Commit 37495dd1 by Carl Bergquist

Merge pull request #3815 from volter/playlist_sort

Fix dashboard sorting in playlists
parents dfd4fbc5 e5e8e202
...@@ -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