Pony.fm/public/scripts/app/directives/albums-list.coffee
2013-08-01 03:57:08 -05:00

12 lines
No EOL
259 B
CoffeeScript

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