16 lines
295 B
JavaScript
16 lines
295 B
JavaScript
import { bindItemsPerPage } from "../src/state/prefs.js";
|
|
|
|
function ready(fn) {
|
|
if (document.readyState === "loading") {
|
|
document.addEventListener("DOMContentLoaded", fn, { once: true });
|
|
} else {
|
|
fn();
|
|
}
|
|
}
|
|
|
|
export function initPrefs() {
|
|
bindItemsPerPage();
|
|
}
|
|
|
|
ready(initPrefs);
|