This repository was archived by the owner on Apr 7, 2021. It is now read-only.

Description
Protz, I can see some code to have a progress bar in the Compose, is this already done? or are you planning to implement it in the future? I can work on that, I'm just not sure if it should be implemented in the functions:
function pValue (v) {
//Log.debug(v+"%");
return;
$(".statusPercentage")
.show()
.text(v+"%");
$(".statusThrobber").hide();
}
function pUndetermined () {
return;
$(".statusPercentage").hide();
$(".statusThrobber").show();
}
function pText (t) {
//Log.debug(t);
return;
$(".statusMessage").text(t);
}