Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added return value to pageSize method #775

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/js/components/paging/FooTable.Paging.js
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@
* Gets or sets the current page size.
* @instance
* @param {(number|string)} [value] - The new page size to use, this value is supplied to `parseInt` so strings can be used. If not supplied or an invalid valid the current page size is returned.
* @returns {(number|undefined)}
* @returns {(number|jQuery.Promise)}
*/
pageSize: function(value){
value = parseInt(value);
Expand All @@ -442,7 +442,7 @@
}
}
this.$create();
this.ft.draw();
return this.ft.draw();
},

/* PRIVATE */
Expand Down