Pony.fm/resources/assets/scripts/app/directives/playlists-list.coffee

14 lines
338 B
CoffeeScript
Raw Normal View History

2015-08-31 17:42:21 +02:00
angular.module('ponyfm').directive 'pfmPlaylistsList', () ->
2015-10-25 03:35:37 +01:00
restrict: 'E'
replace: true
templateUrl: '/templates/directives/playlists-list.html'
scope:
playlists: '=playlists',
class: '@class'
2015-08-31 17:42:21 +02:00
2015-10-25 03:35:37 +01:00
controller: [
'$scope', 'auth'
($scope, auth) ->
$scope.auth = auth.data
]