playerCtrl.js 186 B

12345678910
  1. app.controller('playerCtrl', function($scope, audioService){
  2. $scope.playSong = function(){
  3. audioService.load(16666);
  4. }
  5. $scope.stopSong = function(){
  6. audioService.stop();
  7. }
  8. });