Commit af671d9afd8f314fdd96103ab9a9e1bd221004ab
1 parent
0d6d317bbb
Exists in
master
Borrado spinner.
Showing
2 changed files
with
0 additions
and
8 deletions
Show diff stats
src/js/controller.js
... | ... | @@ -557,7 +557,6 @@ angular.module('focaCrearNotaPedido').controller('notaPedidoCtrl', |
557 | 557 | ); |
558 | 558 | modalInstanceDomicilio.result.then( |
559 | 559 | function (domicilio) { |
560 | - $scope.showLoading = true; | |
561 | 560 | $scope.notaPedido.domicilio = domicilio; |
562 | 561 | $scope.notaPedido.cliente = { |
563 | 562 | COD: cliente.cod, |
... | ... | @@ -603,8 +602,6 @@ angular.module('focaCrearNotaPedido').controller('notaPedidoCtrl', |
603 | 602 | { label: 'Cliente' })[0].checked = true; |
604 | 603 | $filter('filter')($scope.botonera, |
605 | 604 | { label: 'Domicilio de Entrega' })[0].checked = true; |
606 | - | |
607 | - $scope.showLoading = false; | |
608 | 605 | }) |
609 | 606 | .catch(function (e) { console.log(e); }); |
610 | 607 | }, function () { |
src/views/nota-pedido.html
... | ... | @@ -422,8 +422,3 @@ |
422 | 422 | </div> |
423 | 423 | </div> |
424 | 424 | </div> |
425 | -<div ng-show="showLoading == true" class="cover-spin align-items-center justify-content-center"> | |
426 | - <div class="spinner-border text-danger m-2" style="width: 3rem; height: 3rem;" role="status"> | |
427 | - </div> | |
428 | - <strong>Cargando informacion...</strong> | |
429 | -</div> |