This commit is contained in:
Vanessa 2022-12-28 10:22:46 +08:00
parent 277da4da31
commit 58b9a2d708
2 changed files with 6 additions and 2 deletions

View file

@ -417,16 +417,19 @@ ${accountHTML}
break;
} else if (target.id === "menuNewDaily") {
newDailyNote();
closePanel();
event.preventDefault();
event.stopPropagation();
break;
} else if (target.id === "menuCard") {
openCard();
closePanel();
event.preventDefault();
event.stopPropagation();
break;
} else if (target.id === "menuNewNotebook") {
newNotebook();
closePanel();
event.preventDefault();
event.stopPropagation();
break;
@ -460,6 +463,7 @@ ${accountHTML}
break;
} else if (target.id === "menuHistory" && !window.siyuan.config.readonly) {
openHistory();
closePanel();
event.preventDefault();
event.stopPropagation();
break;

View file

@ -28,7 +28,7 @@ export const newDailyNote = () => {
const localNotebookId = localStorage.getItem(Constants.LOCAL_DAILYNOTEID);
if (localNotebookId && getNotebookName(localNotebookId) && !isMobile()) {
fetchPost("/api/filetree/createDailyNote", {
notebook:localNotebookId,
notebook: localNotebookId,
app: Constants.SIYUAN_APPID,
});
} else {
@ -68,7 +68,7 @@ export const newDailyNote = () => {
export const mountHelp = () => {
const notebookId = Constants.HELP_PATH[window.siyuan.config.appearance.lang as "zh_CN" | "en_US"];
fetchPost("/api/notebook/removeNotebook", {notebook: notebookId, callback:Constants.CB_MOUNT_REMOVE}, () => {
fetchPost("/api/notebook/removeNotebook", {notebook: notebookId, callback: Constants.CB_MOUNT_REMOVE}, () => {
fetchPost("/api/notebook/openNotebook", {
callback: Constants.CB_MOUNT_HELP,
notebook: notebookId