mirror of
https://github.com/zadam/trilium.git
synced 2024-11-13 19:26:28 +08:00
17 lines
No EOL
380 B
JavaScript
17 lines
No EOL
380 B
JavaScript
function syncNow() {
|
|
$.ajax({
|
|
url: baseApiUrl + 'sync/now',
|
|
type: 'POST',
|
|
success: result => {
|
|
if (result.success) {
|
|
checkStatus();
|
|
|
|
message("Sync triggered.");
|
|
}
|
|
else {
|
|
error("Sync failed");
|
|
}
|
|
},
|
|
error: () => error("Sync failed")
|
|
});
|
|
} |