mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 13:37:59 +01:00
14 lines
No EOL
314 B
CoffeeScript
14 lines
No EOL
314 B
CoffeeScript
angular.module('ponyfm').directive 'pfmTrackPlayer', () ->
|
|
restrict: 'E'
|
|
templateUrl: '/templates/directives/track-player.html'
|
|
scope:
|
|
track: '=track',
|
|
class: '@class'
|
|
replace: true
|
|
|
|
controller: [
|
|
'$scope', 'player'
|
|
($scope, player) ->
|
|
$scope.play = () ->
|
|
player.playTracks [$scope.track], 0
|
|
] |