Commit 5a958db61cc0060fc0184da7cfbc6fd56e44670d
1 parent
4217403c54
Exists in
master
llamo a script correcto para modal
meto ng-view dentro de un div
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
index.html
| 1 | <html ng-app="focaAbmPlazoPago"> | 1 | <html ng-app="focaAbmPlazoPago"> |
| 2 | <head> | 2 | <head> |
| 3 | <meta charset="UTF-8"/> | 3 | <meta charset="UTF-8"/> |
| 4 | <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | 4 | <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
| 5 | 5 | ||
| 6 | <!--CSS--> | 6 | <!--CSS--> |
| 7 | <link href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"/> | 7 | <link href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"/> |
| 8 | <link href="node_modules/font-awesome/css/font-awesome.min.css" rel="stylesheet"/> | 8 | <link href="node_modules/font-awesome/css/font-awesome.min.css" rel="stylesheet"/> |
| 9 | 9 | ||
| 10 | <!--VENDOR JS--> | 10 | <!--VENDOR JS--> |
| 11 | <script src="node_modules/jquery/dist/jquery.min.js"></script> | 11 | <script src="node_modules/jquery/dist/jquery.min.js"></script> |
| 12 | <script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script> | 12 | <script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script> |
| 13 | <script src="node_modules/angular/angular.min.js"></script> | 13 | <script src="node_modules/angular/angular.min.js"></script> |
| 14 | <script src="node_modules/angular-route/angular-route.min.js"></script> | 14 | <script src="node_modules/angular-route/angular-route.min.js"></script> |
| 15 | <script src="node_modules/ui-bootstrap4/dist/ui-bootstrap-tpls.js"></script> | 15 | <script src="node_modules/ui-bootstrap4/dist/ui-bootstrap-tpls.js"></script> |
| 16 | <script src="node_modules/foca-modal-confirm/dist/foca-modal.min.js"></script> | 16 | <script src="node_modules/foca-modal/dist/foca-modal.min.js"></script> |
| 17 | 17 | ||
| 18 | <script src="src/js/app.js"></script> | 18 | <script src="src/js/app.js"></script> |
| 19 | <script src="src/js/route.js"></script> | 19 | <script src="src/js/route.js"></script> |
| 20 | <script src="src/js/controller.js"></script> | 20 | <script src="src/js/controller.js"></script> |
| 21 | <script src="src/js/service.js"></script> | 21 | <script src="src/js/service.js"></script> |
| 22 | <script src="src/etc/develop.js"></script> | 22 | <script src="src/etc/develop.js"></script> |
| 23 | </head> | 23 | </head> |
| 24 | <body ng-view> | 24 | <body> |
| 25 | 25 | <div ng-view></div> | |
| 26 | </body> | 26 | </body> |
| 27 | </html> | 27 | </html> |
| 28 | 28 |