Apply suggestions from code review
authorMarcel Werk <burntime@woltlab.com>
Thu, 22 Dec 2022 11:18:59 +0000 (12:18 +0100)
committerGitHub <noreply@github.com>
Thu, 22 Dec 2022 11:18:59 +0000 (12:18 +0100)
Co-authored-by: Alexander Ebert <ebert@woltlab.com>
docs/javascript/components_pagination.md

index c43657e5542fadfd9acb665d66b25a49ce33b8d9..d0179dc1b641cb20333bb2a1412a9a2b8a2d0221 100644 (file)
@@ -15,7 +15,7 @@ This component supports both static URLs and dynamic navigation using DOM events
 
 Defaults to `1`.
 
-Number of the currently active page.
+The number of the currently displayed page.
 
 ### `count`
 
@@ -25,18 +25,18 @@ Number of available pages. Must be greater than `1` for the pagination to be dis
 
 ### `url`
 
-Default to an empty string.
+Defaults to an empty string.
 
-If defined, static pagination links are created based on the URL.
+If defined, static pagination links are created based on the URL with the `pageNo` parameter appended to it.
 Otherwise only the `switchPage` event will be fired if a user clicks on a pagination link.
 
 ## Events
 
 ### `switchPage`
 
-The `switchPage` event will be fired if a user clicks on a pagination link. The event detail will contain the number of the selected page.
+The `switchPage` event will be fired when the user clicks on a pagination link. The event detail will contain the number of the selected page.
 The event can be canceled to prevent navigation.
 
 ### `jumpToPage`
 
-The `switchPage` event will be fired if a user clicks on a ellipsis button within the pagination.
+The `switchPage` event will be fired when the user clicks on one of the ellipsis buttons within the pagination.