Pony.fm/resources/assets/scripts/app/directives/albums-list.coffee
2015-08-31 16:42:23 +01:00

13 lines
No EOL
274 B
CoffeeScript

angular.module('ponyfm').directive 'pfmAlbumsList', () ->
restrict: 'E'
replace: true
templateUrl: '/templates/directives/albums-list.html'
scope:
albums: '=albums',
class: '@class'
controller: [
'$scope', 'auth'
($scope, auth) ->
$scope.auth = auth.data
]