0
I have a button, normal, with an ng-click calling a function:
<button class="button button-full button-balanced" ng-click="fechaPedido(pedido.observacao )">
FINALIZAR PEDIDO
</button>
I would like the button to be deactivated after clicking until the function is completed. Why users keep clicking on the button and repeating its actions.
Or is there another way?
Thank you.