This commit is contained in:
Lorenzo Iovino 2016-01-31 01:51:03 +01:00
parent bbc225bd17
commit 6bf83665f7
16 changed files with 113 additions and 85 deletions

View file

@ -269,12 +269,22 @@ angular.module('your_app_name', [
}
})
.state('app.allTickets', {
url: "/allTickets",
.state('app.alltickets', {
url: "/alltickets",
views: {
'menuContent': {
templateUrl: "views/app/allTickets.html",
controller: 'AllTicketsCtrl'
controller: 'CategoryCtrl'
}
}
})
.state('app.allshop', {
url: "/allshop",
views: {
'menuContent': {
templateUrl: "views/app/allTickets.html",
controller: 'CategoryCtrl'
}
}
})