From f052a5c1dcb4f6976f5f16f210cc7eb59c9aad44 Mon Sep 17 00:00:00 2001 From: Philippe Vienne Date: Sun, 17 Apr 2016 23:09:05 +0200 Subject: [PATCH] Improve UI --- public/partials/playlist.html | 5 ++--- public/script.js | 2 ++ 2 files changed, 4 insertions(+), 3 deletions(-) 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
- +
\ 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();