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
{{ message }}
This repository has been archived by the owner on Aug 15, 2019. It is now read-only.
In the nextpage function, I found a line of code that is causing an issue when submiting the form from the last page.
The curpage variable (that is currently a int. var.) receives the object array settings.pages.
After this the navigation stops working.
Just changing the "curpage = settings.pages;" to "curpage = settings.pages.length;" (and adding a "curpage = page;" right before the "return false;" at the end of the "jQuery.fn.gotopage" function did the trick for me.
In the nextpage function, I found a line of code that is causing an issue when submiting the form from the last page.
The curpage variable (that is currently a int. var.) receives the object array settings.pages.
After this the navigation stops working.
if (curpage > settings.pages.length) {
// submit!
$(this).submit();
curpage = settings.pages;
return false;
}
The text was updated successfully, but these errors were encountered: