Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. define([
  2. 'angular',
  3. // 'domReady',
  4. 'ui-router',
  5. 'ngCookies',
  6. 'angularAnimate',
  7. 'angularTouch',
  8.  
  9.  
  10. ], function(angular) {
  11. 'use strict';
  12.  
  13. var appCore=angular.module('app.core', [
  14. 'ui.router',
  15. 'ngCookies',
  16. 'ngAnimate',
  17. 'ngTouch',
  18. ]);
  19.  
  20. // require(['domReady!'], function(document) {
  21.  
  22. // angular.bootstrap(document, ['app.core']);
  23. // });
  24.  
  25. return appCore;
  26. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement