removed: unsaved mark

fixed: allow some commands even if current note not saved
This commit is contained in:
quenousimporte 2023-01-27 09:05:22 +01:00
parent 2edf906402
commit c27f5cf61e
3 changed files with 20 additions and 21 deletions

View File

@ -30,11 +30,9 @@
</div> </div>
<div id="notepage"> <div id="notepage">
<div id="topbar" onclick="ontopbarclick()"> <div id="topbar" onclick="ontopbarclick()">
<span id="titlecontainer"> <input id="title" onchange="ontitlechange()" hidden/>
<input id="title" onchange="ontitlechange()" hidden/>
</span>
<span id="mark">&nbsp;</span>
</div> </div>
<div id="notecontent"> <div id="notecontent">

27
main.js
View File

@ -126,7 +126,8 @@ var commands = [
}, },
{ {
hint: "Share note", hint: "Share note",
action: share action: share,
allowunsaved: true
}/*, }/*,
{ {
hint: "Share note (html)", hint: "Share note (html)",
@ -162,12 +163,14 @@ var commands = [
{ {
shortcut: "ctrl+i", shortcut: "ctrl+i",
hint: "Toggle title", hint: "Toggle title",
action: toggletitle action: toggletitle,
allowunsaved: true
}, },
{ {
shortcut: "ctrl+m", shortcut: "ctrl+m",
hint: "Toggle preview", hint: "Toggle preview",
action: togglepreview action: togglepreview,
allowunsaved: true
}, },
{ {
shortcut: "ctrl+d", shortcut: "ctrl+d",
@ -192,16 +195,19 @@ var commands = [
{ {
shortcut: "ctrl+shift+C", shortcut: "ctrl+shift+C",
hint: "Fold", hint: "Fold",
action: fold action: fold,
allowunsaved: true
}, },
{ {
shortcut: "ctrl+shift+O", shortcut: "ctrl+shift+O",
hint: "Unfold", hint: "Unfold",
action: unfold action: unfold,
allowunsaved: true
}, },
{ {
hint: "Unfold all", hint: "Unfold all",
action: unfoldall action: unfoldall,
allowunsaved: true
}, },
{ {
hint: "Download note", hint: "Download note",
@ -232,7 +238,8 @@ var commands = [
}, },
{ {
hint: "Sort text", hint: "Sort text",
action: sortselection action: sortselection,
allowunsaved: true
}, },
{ {
hint: "Settings", hint: "Settings",
@ -245,7 +252,8 @@ var commands = [
{ {
hint: "Note outline", hint: "Note outline",
action: showoutline, action: showoutline,
shortcut: "ctrl+o" shortcut: "ctrl+o",
allowunsaved: true
}, },
{ {
hint: "Internal links", hint: "Internal links",
@ -263,7 +271,8 @@ var commands = [
}, },
{ {
hint: "Select theme", hint: "Select theme",
action: selecttheme action: selecttheme,
allowunsaved: true
}, },
{ {
hint: "Show info", hint: "Show info",

View File

@ -60,14 +60,6 @@ body::-webkit-scrollbar-thumb {
width: 100%; width: 100%;
} }
#topbar > span {
display: table-cell;
}
#titlecontainer {
width: 100%;
}
#title { #title {
width: 100%; width: 100%;
padding-top: 10px; padding-top: 10px;