You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
766 B

  1. 'use strict';
  2. var urlapi = "http://127.0.0.1:3014/";
  3. //var urlapi = "http://51.255.193.106:3014/";
  4. // Declare app level module which depends on views, and components
  5. angular.module('webApp', [
  6. 'ngRoute',
  7. 'ngMessages',
  8. 'angularBootstrapMaterial',
  9. 'angular-svg-round-progressbar',
  10. 'app.navbar',
  11. 'app.main',
  12. 'app.block',
  13. 'app.tx',
  14. 'app.address',
  15. 'app.network',
  16. 'app.addressNetwork',
  17. 'app.sankey',
  18. 'app.dateAnalysis',
  19. 'app.blocks',
  20. 'app.txs',
  21. 'app.addresses',
  22. 'app.beta'
  23. ]).
  24. config(['$locationProvider', '$routeProvider', function($locationProvider, $routeProvider) {
  25. $locationProvider.hashPrefix('!');
  26. $routeProvider.otherwise({
  27. redirectTo: '/main'
  28. });
  29. }]);