Advertisement
Guest User

indexRoute

a guest
Jan 14th, 2014
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. App.IndexRoute = Ember.Route.extend({
  2.   init: function() {
  3.     //alert(document.URL);
  4.   },
  5.   model: function() {
  6.     return Em.RSVP.hash({
  7.       ghNotifications: this.store.find('GHNotification')
  8.     });
  9.   }
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement