Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. state('app.my-page', {
  2.     url: '/my-page',
  3.     templateUrl: appHelper.templatePath('my-page'),
  4.     resolve: {
  5.         resources: function($ocLazyLoad){
  6.             return $ocLazyLoad.load([
  7.                 'my-file-dir/files.js',
  8.                 'my-other-dir/other.js'
  9.             ]);
  10.         },
  11.     }
  12. })