diff --git a/public/partials/playlist.html b/public/partials/playlist.html index e923cef..6743b03 100644 --- a/public/partials/playlist.html +++ b/public/partials/playlist.html @@ -1,9 +1,8 @@

Playlist

- Load
-
+ {{playlist.name}} -
+
\ No newline at end of file diff --git a/public/script.js b/public/script.js index 6fa8dac..75f74a8 100644 --- a/public/script.js +++ b/public/script.js @@ -82,7 +82,9 @@ } }) }; + $scope.current = undefined; $scope.open = function(playlist) { + $scope.current = playlist; $state.go('finder.playlist.dups',{uid: playlist.owner.id, id: playlist.id}) }; $scope.load();