diff --git a/public/app/features/playlist/partials/playlist-remove.html b/public/app/features/playlist/partials/playlist-remove.html index d40b8b9ca42..8474f97f8de 100644 --- a/public/app/features/playlist/partials/playlist-remove.html +++ b/public/app/features/playlist/partials/playlist-remove.html @@ -1,4 +1,4 @@ -

Are you sure want to delete "{{ playlist.title }}" playlist?

+

Are you sure want to delete "{{playlist.title}}" playlist?

diff --git a/public/app/features/playlist/partials/playlists.html b/public/app/features/playlist/partials/playlists.html index 7ebfff12e95..c5e947e9463 100644 --- a/public/app/features/playlist/partials/playlists.html +++ b/public/app/features/playlist/partials/playlists.html @@ -1,47 +1,42 @@ -

-
- +
+
+

Playlists

-
-
+ +
-
- No saved playlists -
+ + + + + + + -
- Saved playlists -
- -
- -
TitleUrl
- - - - + - - - - -
TitleUrl
+ {{playlist.title}} + {{ playlistUrl(playlist) }} + Play + Edit + diff --git a/public/app/features/playlist/playlistsCtrl.js b/public/app/features/playlist/playlistsCtrl.js index d02757acf3e..26d3cfaf175 100644 --- a/public/app/features/playlist/playlistsCtrl.js +++ b/public/app/features/playlist/playlistsCtrl.js @@ -41,13 +41,10 @@ function (angular, _) { src: './app/features/playlist/partials/playlist-remove.html', scope: modalScope }); - }; $scope.createPlaylist = function() { $location.path('/playlists/create'); }; - }); - });