Commit cce5aefb446a6d9bf1a37805e652f7d898ffa057
1 parent
544be6d7a4
Exists in
master
and in
1 other branch
configuración para ser llamado como un componente
Showing
1 changed file
with
48 additions
and
0 deletions
Show diff stats
index.html
| File was created | 1 | <html ng-app="focaBusquedaCliente"> | |
| 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/ui-bootstrap4/dist/ui-bootstrap-tpls.js"></script> | ||
| 16 | |||
| 17 | <!-- BUILD --> | ||
| 18 | <script src="src/js/app.js"></script> | ||
| 19 | <script src="src/js/controller.js"></script> | ||
| 20 | <script src="src/js/service.js"></script> | ||
| 21 | |||
| 22 | <!-- /BUILD --> | ||
| 23 | |||
| 24 | <!-- CONFIG PARA DEVELOP --> | ||
| 25 | <script type="text/javascript"> | ||
| 26 | angular.module('focaBusquedaCliente') | ||
| 27 | .controller('controller', ['$uibModal', function ($uibModal) { | ||
| 28 | var modalInstance = $uibModal.open( | ||
| 29 | { | ||
| 30 | ariaLabelledBy: 'Busqueda de Petroleras', | ||
| 31 | templateUrl: 'src/views/foca-busqueda-cliente-modal', | ||
| 32 | controller: 'focaBusquedaClienteModalController', | ||
| 33 | size: 'lg' | ||
| 34 | } | ||
| 35 | ); | ||
| 36 | }]); | ||
| 37 | </script> | ||
| 38 | </head> | ||
| 39 | |||
| 40 | <body ng-controller="controller"> | ||
| 41 | <style> | ||
| 42 | .p-5 { | ||
| 43 | padding: 5px !important; | ||
| 44 | } | ||
| 45 | </style> | ||
| 46 | </body> | ||
| 47 | |||
| 48 | </html> |