13 lines
No EOL
300 B
JavaScript
13 lines
No EOL
300 B
JavaScript
'use strict';
|
|
|
|
var jamstash = angular.module('JamStash');
|
|
|
|
jamstash.controller('PodcastCtrl',
|
|
function PodcastCtrl($scope, $rootScope, $location, utils, globals, model, notifications) {
|
|
$rootScope.song = [];
|
|
|
|
|
|
/* Launch on Startup */
|
|
$scope.getPodcasts();
|
|
/* End Startup */
|
|
}); |