mirror of
https://github.com/zadam/trilium.git
synced 2024-11-18 05:35:56 +08: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
|
||
|
}
|