Commit e8d4802d140afd670d24ad9676754d57eb10d74b
1 parent
80c8a48cb2
Exists in
master
Agrego index para hacer pruebas del mólulo de modo unitario
Showing
1 changed file
with
29 additions
and
0 deletions
Show diff stats
index.html
1 | <html ng-app="focaAbmPreciosCondiciones"> | ||
2 | |||
3 | <head> | ||
4 | <meta charset="UTF-8" /> | ||
5 | <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
6 | |||
7 | <!--CSS--> | ||
8 | <link href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet" /> | ||
9 | <link href="node_modules/font-awesome/css/font-awesome.min.css" rel="stylesheet" /> | ||
10 | |||
11 | <!--VENDOR JS--> | ||
12 | <script src="node_modules/jquery/dist/jquery.min.js"></script> | ||
13 | <script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script> | ||
14 | <script src="node_modules/angular/angular.min.js"></script> | ||
15 | <script src="node_modules/angular-route/angular-route.min.js"></script> | ||
16 | <script src="node_modules/ui-bootstrap4/dist/ui-bootstrap-tpls.js"></script> | ||
17 | |||
18 | <!-- BUILD --> | ||
19 | <script src="src/js/app.js"></script> | ||
20 | <script src="src/js/route.js"></script> | ||
21 | <script src="src/js/controller.js"></script> | ||
22 | <script src="src/js/service.js"></script> | ||
23 | <script src="src/etc/develop.js"></script> | ||
24 | <!-- /BUILD --> | ||
25 | |||
26 | <body ng-view> | ||
27 | </body> | ||
28 | |||
29 | </html> |