hides a progress bar/icon
$$("app").hideProgress();
In case you know the exact moment of time when a progress bar need to be hidden, specify the time in milliseconds in the showProgress() method.
This progress icon will be hidden after 3 seconds:
$$("app").showProgress({
delay:3000, // ms
hide:true
});