IBM / customer-loyalty-program

# WARNING: This repository is no longer maintained :warning: This pattern focuses on older technology (e.g. Hyperledger Fabric APIs prior to Fabric 1.4). Therefore, there is no support for this pattern and it will be archived on May 1, 2019. You are welcome to use up to that date, but we recommend that you begin working with the updated release found at https://developer.ibm.com/patterns/customer-loyalty-program-with-iks-saas-v2-fabric/.
https://developer.ibm.com/patterns/customer-loyalty-program-with-blockchain/
Apache License 2.0
64 stars 78 forks source link

How can I display the processing status like when registering #14

Closed gnurtcouq closed 5 years ago

gnurtcouq commented 5 years ago

Hi all,

How can I create circular progress bar/loading indicator like this (see attached file)

Thx in advance. processing status

gnurtcouq commented 5 years ago

Hi all, I found the solution. Simply add below codes: //display loading document.getElementById('loader').style.display = "block"; ... //remove loader document.getElementById('loader').style.display = "none";

gnurtcouq commented 5 years ago

closed.