Guest User

Untitled

a guest
Oct 15th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. define([ 'routers/mainRouter'
  2. , 'routers/userRouter'
  3. , 'routers/countryRouter'
  4. ],
  5. function(MainRouter, UserRouter, CountryRouter) {
  6.  
  7. Application.mainRouter = new MainRouter();
  8. Application.countryRouter = new CountryRouter();
  9. Application.userRouter = new UserRouter();
  10.  
  11. return window.Application = Application;
  12. });
Add Comment
Please, Sign In to add comment