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 id="notepage">
<div id="topbar" onclick="ontopbarclick()">
<span id="titlecontainer">
<input id="title" onchange="ontitlechange()" hidden/>
</span>
<span id="mark">&nbsp;</span>
<input id="title" onchange="ontitlechange()" hidden/>
</div>
<div id="notecontent">

27
main.js
View File

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

View File

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