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