Skip to content
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