alfirin/sept-web-radio

View on GitHub
app/scripts/controllers/IndexCtrl.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

/* Controllers */

angular.module('septWebRadioControllers').controller('IndexCtrl', ['$scope', 'playlistServices',
  function ($scope, playlistServices) {

    $scope.featuredPlaylists = [];

    $scope.init = function () {
      $scope.initPageTitle();

      // Get the featured playlists
      $scope.featuredPlaylists = playlistServices.getFeaturedPlaylists();
    };
  }]
);