hides a progress bar/icon
$$("app").hideProgress();
Instead of calling the method, one can tune a progress bar to hide after a certain period of time:
//this progress icon will be hidden after 3 seconds
$$("app").showProgress({
delay:3000, //ms
hide:true
});
This progress icon will be hidden after 3 seconds.