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. });