renamed service variables to conform to new naming scheme

This commit is contained in:
azivner
2018-03-25 13:41:29 -04:00
parent d746d707b5
commit 297a2cd9da
31 changed files with 121 additions and 176 deletions

View File

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