Commit a365cc3f3507c06a81a1ad15ff7a6260c59fd3fa

Authored by Jose Pinto
1 parent b21b501dfb
Exists in master and in 1 other branch develop

elimina clase 'guardado' antes de mostrar boton guardar

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
... ... @@ -26,6 +26,7 @@ angular.module('focaBotoneraLateral')
26 26 this.botones.pathCancelar = (path) ? path : undefined;
27 27 };
28 28 this.showGuardar = function(value, funcion) {
  29 + angular.element('#guardar').removeClass('guardado');
29 30 this.botones.custom = [];
30 31 this.botones.guardar = value;
31 32 if(value) this.botones.funcionGuardar = funcion;
... ... @@ -38,7 +39,6 @@ angular.module('focaBotoneraLateral')
38 39 };
39 40 this.startGuardar = function() {
40 41 this.botones.guardando = true;
41   -
42 42 };
43 43 this.endGuardar = function(guardado) {
44 44 this.botones.guardando = false;