11 lines
159 B
JavaScript
Raw Normal View History

2018-02-25 10:55:21 -05:00
"use strict";
function exportSubTree(noteId) {
const url = getHost() + "/api/export/" + noteId;
download(url);
}
function importSubTree(noteId) {
}