You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks like this is caused by the last button "save it and load another" being counted as a "step" in this part of the code:
$('.btn-answer').off('click').on('click', function(evt) {
// Get value of pressed button
var tmp = $(evt.target).attr("value");
// PAGINATION
var pag_max_steps = $(".steps").length;
var pag_n_steps = $(".steps").index($(".steps:visible"));
var pag_perc=(((pag_n_steps+1)/(pag_max_steps-1))*100).toFixed(0);
$("#progress_bar_task").css("width",pag_perc+"%");
$("#progress_bar_task").html(pag_perc+"%");
Resets on completion of first subtask
Not sure if this is the right issues list for this...
The text was updated successfully, but these errors were encountered: