Commit 43b8b63ef664e63e4f00dfc2b8c231f9e0e81dcc
1 parent
1672ed990d
Exists in
master
agrego script para usar servicios de focaModal
pongo ng-view en div
Showing
1 changed file
with
5 additions
and
2 deletions
Show diff stats
index.html
1 | <html ng-app="focaAbmPreciosCondiciones"> | 1 | <html ng-app="focaAbmPreciosCondiciones"> |
2 | 2 | ||
3 | <head> | 3 | <head> |
4 | <meta charset="UTF-8" /> | 4 | <meta charset="UTF-8" /> |
5 | <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | 5 | <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
6 | 6 | ||
7 | <!--CSS--> | 7 | <!--CSS--> |
8 | <link href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet" /> | 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" /> | 9 | <link href="node_modules/font-awesome/css/font-awesome.min.css" rel="stylesheet" /> |
10 | 10 | ||
11 | <!--VENDOR JS--> | 11 | <!--VENDOR JS--> |
12 | <script src="node_modules/jquery/dist/jquery.min.js"></script> | 12 | <script src="node_modules/jquery/dist/jquery.min.js"></script> |
13 | <script src="node_modules/bootstrap/dist/js/bootstrap.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> | 14 | <script src="node_modules/angular/angular.min.js"></script> |
15 | <script src="node_modules/angular-route/angular-route.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> | 16 | <script src="node_modules/ui-bootstrap4/dist/ui-bootstrap-tpls.js"></script> |
17 | <script src="node_modules/foca-modal/dist/foca-modal.min.js"></script> | ||
17 | 18 | ||
18 | <!-- BUILD --> | 19 | <!-- BUILD --> |
19 | <script src="src/js/app.js"></script> | 20 | <script src="src/js/app.js"></script> |
20 | <script src="src/js/route.js"></script> | 21 | <script src="src/js/route.js"></script> |
21 | <script src="src/js/controller.js"></script> | 22 | <script src="src/js/controller.js"></script> |
22 | <script src="src/js/service.js"></script> | 23 | <script src="src/js/service.js"></script> |
23 | <script src="src/etc/develop.js"></script> | 24 | <script src="src/etc/develop.js"></script> |
24 | <!-- /BUILD --> | 25 | <!-- /BUILD --> |
25 | 26 | ||
26 | <body ng-view> | 27 | <body> |
28 | <div ng-view> | ||
29 | </div> | ||
27 | </body> | 30 | </body> |
28 | 31 | ||
29 | </html> | ||
32 | </html> |