Spaces:
Runtime error
Runtime error
alamin655
commited on
Commit
•
f103e46
1
Parent(s):
09d9573
Add comments and docstrings to the code
Browse files
public/static/pagination.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
/**
|
2 |
-
* Navigates to the next page by incrementing the current page number in the URL query
|
3 |
* @returns {void}
|
4 |
*/
|
5 |
function navigate_forward() {
|
@@ -19,7 +19,7 @@ function navigate_forward() {
|
|
19 |
}
|
20 |
|
21 |
/**
|
22 |
-
* Navigates to the previous page by decrementing the current page number in the URL query
|
23 |
* @returns {void}
|
24 |
*/
|
25 |
function navigate_backward() {
|
|
|
1 |
/**
|
2 |
+
* Navigates to the next page by incrementing the current page number in the URL query string.
|
3 |
* @returns {void}
|
4 |
*/
|
5 |
function navigate_forward() {
|
|
|
19 |
}
|
20 |
|
21 |
/**
|
22 |
+
* Navigates to the previous page by decrementing the current page number in the URL query string.
|
23 |
* @returns {void}
|
24 |
*/
|
25 |
function navigate_backward() {
|