Commit 8db1394bc815075e87f97c55718c50de37f292ae
1 parent
7baa01a7d9
Exists in
master
and in
2 other branches
fuera index, ok replace gulp
Showing
2 changed files
with
1 additions
and
32 deletions
Show diff stats
gulpfile.js
| ... | ... | @@ -40,7 +40,7 @@ gulp.task('uglify', ['templates'], function() { |
| 40 | 40 | 'tmp/views.js' |
| 41 | 41 | ]), |
| 42 | 42 | concat('foca-abm-vendedor-cobrador.js'), |
| 43 | - replace("['ngRoute', 'focaModal', 'ui.bootstrap']", '[]'), | |
| 43 | + replace("['ngRoute', 'focaModal', 'ui.bootstrap', 'focaBotoneraLateral']", '[]'), | |
| 44 | 44 | replace("src/views/", ''), |
| 45 | 45 | gulp.dest(paths.tmp), |
| 46 | 46 | rename('foca-abm-vendedor-cobrador.min.js'), |
index.html
| ... | ... | @@ -1,31 +0,0 @@ |
| 1 | -<html ng-app="focaAbmVehiculo"> | |
| 2 | - <head> | |
| 3 | - <meta charset="UTF-8"/> | |
| 4 | - <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
| 5 | - | |
| 6 | - <!--CSS--> | |
| 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"/> | |
| 9 | - | |
| 10 | - <!--VENDOR JS--> | |
| 11 | - <script src="node_modules/jquery/dist/jquery.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> | |
| 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> | |
| 16 | - <script src="node_modules/foca-modal/dist/foca-modal.min.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 | - <!-- /BUILD --> | |
| 24 | - | |
| 25 | - <!-- CONFIG PARA DEVELOP --> | |
| 26 | - <script src="src/etc/develop.js"></script> | |
| 27 | - </head> | |
| 28 | - <body style="background: #afafaf;padding: 25px"> | |
| 29 | - <div class="container-fluid pt-3 pb-3" ng-view style="background: #fff"></div> | |
| 30 | - </body> | |
| 31 | -</html> |