2021-03-11 05:43:45 +01:00
|
|
|
import $ from "jquery";
|
|
|
|
|
2021-02-28 01:12:54 +01:00
|
|
|
export function update_padding(opts) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const content = $(opts.content_sel);
|
|
|
|
const padding = $(opts.padding_sel);
|
|
|
|
const total_rows = opts.total_rows;
|
|
|
|
const shown_rows = opts.shown_rows;
|
|
|
|
const hidden_rows = total_rows - shown_rows;
|
2018-07-26 19:50:15 +02:00
|
|
|
|
|
|
|
if (shown_rows === 0) {
|
|
|
|
padding.height(0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const ratio = hidden_rows / shown_rows;
|
2018-07-26 19:50:15 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const content_height = content.height();
|
|
|
|
const new_padding_height = ratio * content_height;
|
2018-07-26 19:50:15 +02:00
|
|
|
|
|
|
|
padding.height(new_padding_height);
|
|
|
|
padding.width(1);
|
2021-02-28 01:12:54 +01:00
|
|
|
}
|