artistListCtrl.js 219 B

1234567891011
  1. app.controller('artistListCtrl', function($scope, $http, AudioService, artists){
  2. $scope.artists=artists;
  3. $scope.showSongSection = false;
  4. $scope.showSongs = function(name){
  5. $scope.showSongSection = true;
  6. }
  7. });