generator-ionic-1-ndjathe
Version:
Side menu app base template
14 lines (13 loc) • 338 B
JavaScript
/**
* Created by NDJATHE Franklin on 25/02/2017.
*/
App.controller('PlaylistsCtrl', function($scope) {
$scope.playlists = [
{ title: 'Reggae', id: 1 },
{ title: 'Chill', id: 2 },
{ title: 'Dubstep', id: 3 },
{ title: 'Indie', id: 4 },
{ title: 'Rap', id: 5 },
{ title: 'Cowbell', id: 6 }
];
});