Commit f9bff7acece72dcd71b8740055ecae0d3cd8003a
1 parent
5226dd7e7f
Exists in
master
- Removí espacios.
- Formateé html. - Modifiqué nombre de módulo en develop.ejemplo.js
Showing
3 changed files
with
26 additions
and
27 deletions
Show diff stats
gulpfile.js
| ... | ... | @@ -40,7 +40,7 @@ gulp.task('uglify', ['templates'], function() { |
| 40 | 40 | ]), |
| 41 | 41 | concat('foca-abm-precios-condiciones.js'), |
| 42 | 42 | replace('src/views/', ''), |
| 43 | - replace("['ngRoute', 'ui.bootstrap']", '[]'), | |
| 43 | + replace("['ngRoute', 'ui.bootstrap']", '[]'), | |
| 44 | 44 | gulp.dest(paths.tmp), |
| 45 | 45 | rename('foca-abm-precios-condiciones.min.js'), |
| 46 | 46 | uglify(), |
index.html
| 1 | 1 | <html ng-app="focaAbmPreciosCondiciones"> |
| 2 | + <head> | |
| 3 | + <meta charset="UTF-8" /> | |
| 4 | + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
| 2 | 5 | |
| 3 | -<head> | |
| 4 | - <meta charset="UTF-8" /> | |
| 5 | - <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
| 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" /> | |
| 6 | 9 | |
| 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 | + <!--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> | |
| 10 | 16 | |
| 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> | |
| 30 | 17 | \ No newline at end of file |
| 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 | + </head> | |
| 26 | + <body> | |
| 27 | + <div ng-view></div> | |
| 28 | + </body> | |
| 29 | +</html> |
src/etc/develop.ejemplo.js