mirror of
https://github.com/zadam/trilium.git
synced 2025-11-06 13:26:01 +01:00
9 lines
197 B
JavaScript
9 lines
197 B
JavaScript
|
|
import server from "./server.js";
|
||
|
|
|
||
|
|
const optionsReady = new Promise((resolve, reject) => {
|
||
|
|
$(document).ready(() => server.get('options').then(resolve));
|
||
|
|
});
|
||
|
|
|
||
|
|
export default {
|
||
|
|
optionsReady
|
||
|
|
}
|