moved services into the service directory

This commit is contained in:
azivner
2018-03-25 13:02:39 -04:00
parent f52d7e3c28
commit fddd1c278f
33 changed files with 91 additions and 92 deletions

View File

@@ -1,6 +1,6 @@
"use strict";
import noteEditor from '../note_editor.js';
import noteDetail from '../services/note_detail.js';
const $showDialogButton = $("#show-source-button");
const $dialog = $("#note-source-dialog");
@@ -15,7 +15,7 @@ function showDialog() {
height: 500
});
const noteText = noteEditor.getCurrentNote().detail.content;
const noteText = noteDetail.getCurrentNote().detail.content;
$noteSource.text(formatHtml(noteText));
}