nexus site path corrected
[portal.git] / ecomp-portal-FE / client / bower_components / angular-cache / build_examples / r.js / main.js
1 require.config({
2   paths: {
3     angular: '../../bower_components/angular/angular',
4     'angular-cache': '../../dist/angular-cache',
5   },
6   shim: {
7     'angular': {
8       exports: 'angular'
9     }
10   }
11 });
12
13 require([
14     'angular',
15     'app'
16   ], function (angular, app) {
17     angular.element(document.getElementsByTagName('html')[0]).ready(function () {
18       // bootstrap the app manually
19       angular.bootstrap(document, ['app']);
20     });
21   }
22 );