diff --git a/src/features/pagination/js/pagination.js b/src/features/pagination/js/pagination.js index f2c77997a2..c6ddecebce 100644 --- a/src/features/pagination/js/pagination.js +++ b/src/features/pagination/js/pagination.js @@ -170,14 +170,14 @@ * @ngdoc property * @name enablePagination * @propertyOf ui.grid.pagination.api:GridOptions - * @description Enables pagination, defaults to true + * @description Enables pagination. Defaults to true. */ gridOptions.enablePagination = gridOptions.enablePagination !== false; /** * @ngdoc property * @name enablePaginationControls * @propertyOf ui.grid.pagination.api:GridOptions - * @description Enables the paginator at the bottom of the grid. Turn this off, if you want to implement your + * @description Enables the paginator at the bottom of the grid. Turn this off if you want to implement your * own controls outside the grid. */ gridOptions.enablePaginationControls = gridOptions.enablePaginationControls !== false; @@ -186,14 +186,14 @@ * @name useExternalPagination * @propertyOf ui.grid.pagination.api:GridOptions * @description Disables client side pagination. When true, handle the paginationChanged event and set data - * and totalItems, defaults to `false` + * and totalItems. Defaults to `false` */ gridOptions.useExternalPagination = gridOptions.useExternalPagination === true; /** * @ngdoc property * @name totalItems * @propertyOf ui.grid.pagination.api:GridOptions - * @description Total number of items, set automatically when client side pagination, needs set by user + * @description Total number of items, set automatically when using client side pagination, but needs set by user * for server side pagination */ if (gridUtil.isNullOrUndefined(gridOptions.totalItems)) {