Ubuntu Pastebin

Paste from ilhami at Mon, 11 Jan 2016 17:22:09 +0000

Download as text
 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');
                });
            }],
Download as text