Commit 51b93fcc7230915949c237fe8a033adbbd31b57d

Authored by Pablo Marco del Pont
1 parent a756c6a151
Exists in master

- Agregué teclado virtual.

- Agregué watch a gulp.
Showing 2 changed files with 6 additions and 0 deletions   Show diff stats
... ... @@ -80,3 +80,7 @@ gulp.task('webserver', function() {
80 80 });
81 81  
82 82 gulp.task('default', ['webserver']);
  83 +
  84 +gulp.task('watch', function() {
  85 + return gulp.watch([paths.srcJS, paths.srcViews], ['uglify']);
  86 +});
src/views/foca-login.html
... ... @@ -10,6 +10,7 @@
10 10 ng-model = "usuario.idUsuario"
11 11 foca-focus = "paso == 1"
12 12 ng-keyup = "$event.keyCode == 13 && irPaso(2)"
  13 + teclado-virtual
13 14 />
14 15 </div>
15 16 <div class="login-campo">
... ... @@ -19,6 +20,7 @@
19 20 ng-model = "usuario.clave"
20 21 foca-focus = "paso == 2"
21 22 ng-keyup = "$event.keyCode == 13 && enviar()"
  23 + teclado-virtual
22 24 />
23 25 </div>
24 26 </form>