Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. .state('pushNotifications', {
  2. url: '/pushNotifications',
  3. controller: 'PushNotificationsCtrl',
  4. templateUrl: 'packages/pushNotifications/partials/pushNotifications.html',
  5. resolve: {
  6. initialUsers: ['$q', function ($q) {
  7. var users = [
  8. { name: 'Hal Incandenza', deviceUuid: '123' },
  9. { name: 'Johnny Banana', deviceUuid: '456' }
  10. ];
  11.  
  12. console.log($q.resolve);
  13. return $q.resolve(users);
  14. }]
  15. }
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement