unified naming of IDs in all lower case

This commit is contained in:
azivner
2017-10-10 20:19:16 -04:00
parent fb28111288
commit af8b26cbd5
13 changed files with 136 additions and 186 deletions

View File

@@ -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', () => {