mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 13:37:59 +01:00
11 lines
No EOL
218 B
CoffeeScript
11 lines
No EOL
218 B
CoffeeScript
angular.module('ponyfm').directive 'pfmTracksList', () ->
|
|
restrict: 'E'
|
|
templateUrl: '/templates/directives/tracks-list.html'
|
|
scope:
|
|
tracks: '=tracks',
|
|
class: '@class'
|
|
|
|
controller: [
|
|
'$scope'
|
|
($scope) ->
|
|
] |