This commit is contained in:
azivner
2017-11-26 19:56:08 -05:00
parent a92df38479
commit 9fcafe44d5
3 changed files with 4 additions and 9 deletions

View File

@@ -21,10 +21,6 @@ const noteEditor = (function() {
return currentNote ? currentNote.detail.note_id : null;
}
function getCurrentNoteLoadTime() {
return currentNote ? currentNote.loadTime : null;
}
function noteChanged() {
if (noteChangeDisabled) {
return;
@@ -203,7 +199,6 @@ const noteEditor = (function() {
loadNote,
getCurrentNote,
getCurrentNoteId,
getCurrentNoteLoadTime,
newNoteCreated
};
})();