3.2.2
This commit is contained in:
parent
ff10d7779c
commit
95f7ef53f2
27 changed files with 606 additions and 292 deletions
|
@ -1,5 +1,5 @@
|
|||
/* Declare app level module */
|
||||
var JamStash = angular.module('JamStash', ['ngCookies', 'ngSanitize']);
|
||||
var JamStash = angular.module('JamStash', ['ngCookies', 'ngRoute', 'ngSanitize']);
|
||||
//var JamStash = angular.module('JamStash', ['ngCookies', 'ngRoute']);
|
||||
/*
|
||||
JamStash.config(function ($sceDelegateProvider) {
|
||||
|
@ -17,6 +17,7 @@ JamStash.config(function ($routeProvider) {
|
|||
$routeProvider
|
||||
.when('/index', { redirectTo: '/library' })
|
||||
.when('/settings', { templateUrl: 'js/partials/settings.html', controller: 'SettingsCtrl' })
|
||||
.when('/queue', { templateUrl: 'js/partials/queue.html', controller: 'QueueCtrl' })
|
||||
.when('/library', { templateUrl: 'js/partials/library.html', controller: 'SubsonicCtrl' })
|
||||
.when('/library/:artistId', { templateUrl: 'js/partials/library.html', controller: 'SubsonicCtrl', reloadOnSearch: false })
|
||||
.when('/library/:artistId/:albumId', { templateUrl: 'js/partials/library.html', controller: 'SubsonicCtrl', reloadOnSearch: false })
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue