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