1
2
3
4
5
6
7
8
9
10 | .state('viewReminder', {
url: '/dashboard/reminder/:id/view',
onEnter: ['$stateParams', '$state', '$uibModal', '$resource', function($stateParams, $state, $uibModal, $resource) {
$uibModal.open({
templateUrl: "/templates/edit-reminder.html",
controller: 'ReminderViewController'
}).result.finally(function() {
$state.go('dashboard');
});
}],
|