removed noteId display in the note detail, #408

This commit is contained in:
zadam
2019-02-14 20:57:56 +01:00
parent 2a2319d434
commit b0596c9eb2
3 changed files with 0 additions and 13 deletions

View File

@@ -26,7 +26,6 @@ const $noteDetailComponents = $(".note-detail-component");
const $protectButton = $("#protect-button");
const $unprotectButton = $("#unprotect-button");
const $noteDetailWrapper = $("#note-detail-wrapper");
const $noteIdDisplay = $("#note-id-display");
const $childrenOverview = $("#children-overview");
const $scriptArea = $("#note-detail-script-area");
const $savedIndicator = $("#saved-indicator");
@@ -201,8 +200,6 @@ async function loadNoteDetail(noteId) {
attributeService.invalidateAttributes();
}
$noteIdDisplay.html(noteId);
updateNoteView();
$noteDetailWrapper.show();