View file public/plugins/progressbar/js/progressbar.js
function startProgressBar() {
$("#progress-bar").animate({ width: "100%" }, 200);
}
function resetProgressBar() {
$("#progress-bar").stop().width(0);
}
function startProgressBar() {
$("#progress-bar").animate({ width: "100%" }, 200);
}
function resetProgressBar() {
$("#progress-bar").stop().width(0);
}