Make number of file list entries depending on the width for grid view

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2018-11-18 10:34:35 +01:00
parent 8bf7ec26e0
commit eb039608f9
No known key found for this signature in database
GPG key ID: 4C614C6ED2CDE6DF

View file

@ -99,7 +99,14 @@
* @return {int} page size
*/
pageSize: function() {
return Math.max(Math.ceil(this.$container.height() / 50), 1);
var isGridView = this.$showGridView.is(':checked');
var columns = 1;
var rows = Math.ceil(this.$container.height() / 50);
if (isGridView) {
columns = Math.ceil(this.$container.width() / 160);
rows = Math.ceil(this.$container.height() / 160);
}
return Math.max(columns*rows, columns);
},
/**