Files
quicknotes/js/templates/settings.handlebars
Matias De lellis 2066955ec9 Implements automatic saving of notes. Issue #40
This is disabled by default and is saved within each browser as localStorage.
Always you can cancel the edit with Esc key.

On the other hand, now also allows you save the notes with Crl+Enter key, which
is more standard.
2022-05-17 14:21:02 -03:00

23 lines
1.2 KiB
Handlebars

<p class="app-settings">
<input id="explicit-save-notes" type="checkbox" class="checkbox">
<label for="explicit-save-notes">{{t "quicknotes" "When editing notes show the save and cancel buttons to save them explicitly"}}</label>
</p>
<div>
<label>{{t "quicknotes" "Default color for new notes"}}</label>
</div>
<div id="setting-defaul-color">
<div id="defaultColor" style="display: flex; justify-content: center;">
<div class="colors-toolbar">
<a href="#" class="circle-toolbar" style="background-color: #F7EB96"></a>
<a href="#" class="circle-toolbar" style="background-color: #88B7E3"></a>
<a href="#" class="circle-toolbar" style="background-color: #C1ECB0"></a>
<a href="#" class="circle-toolbar" style="background-color: #BFA6E9"></a>
<a href="#" class="circle-toolbar" style="background-color: #DAF188"></a>
<a href="#" class="circle-toolbar" style="background-color: #FF96AC"></a>
<a href="#" class="circle-toolbar" style="background-color: #FCF66F"></a>
<a href="#" class="circle-toolbar" style="background-color: #F2F1EF"></a>
<a href="#" class="circle-toolbar" style="background-color: #C1D756"></a>
<a href="#" class="circle-toolbar" style="background-color: #CECECE"></a>
</div>
</div>
</div>