nexus site path corrected
[portal.git] / ecomp-portal-FE / client / bower_components / angular-cache / build_examples / r.js / app.js
1 define('app', [
2   'angular',
3   'angular-cache'
4 ], function (angular, angularCacheModuleName) {
5   return angular.module('app', ['angular-cache'])
6     .run(function ($rootScope) {
7       $rootScope.test = 'It works! Using ' + angularCacheModuleName;
8     });
9 });