Advertisement
nbatothemax

Untitled

Aug 30th, 2014
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <div ui-view="main">
  2.   <!-- content populated here by AngularJS ui-router -->
  3.   <aside ui-view="sidebar">
  4.     <!-- content populated here by AngularJS ui-router -->
  5.   </aside>
  6. </div>
  7.  
  8. .state('state1', {
  9.   url: '/',
  10.   views: {
  11.     'main': {
  12.       templateUrl: '/modules/blog/partials/index.html',
  13.       controller: 'BlogController'
  14.     },
  15.     'sidebar': {
  16.       templateUrl: '/modules/core/partials/sidebar.html'
  17.     }
  18.   }
  19. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement