mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 02:45:54 +01:00
unified naming of IDs in all lower case
This commit is contained in:
@@ -7,8 +7,6 @@ $(document).bind('keydown', 'alt+m', () => {
|
||||
const hidden = toggle.css('display') === 'none';
|
||||
|
||||
toggle.css('display', hidden ? 'block' : 'none');
|
||||
|
||||
$("#noteDetailWrapper").css("width", hidden ? "750px" : "100%");
|
||||
});
|
||||
|
||||
// hide (toggle) everything except for the note content for distraction free writing
|
||||
@@ -16,7 +14,7 @@ $(document).bind('keydown', 'alt+t', () => {
|
||||
const date = new Date();
|
||||
const dateString = formatDateTime(date);
|
||||
|
||||
$('#noteDetail').summernote('insertText', dateString);
|
||||
$('#note-detail').summernote('insertText', dateString);
|
||||
});
|
||||
|
||||
$(window).on('beforeunload', () => {
|
||||
|
||||
Reference in New Issue
Block a user