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,7 +1,5 @@
"use strict";
import treeService from '../services/tree_service.js';
import link from '../services/link.js';
import treeService from '../services/tree.js';
import linkService from '../services/link.js';
import utils from '../services/utils.js';
const $showDialogButton = $("#jump-to-note-button");
@@ -27,7 +25,7 @@ async function showDialog() {
function getSelectedNotePath() {
const val = $autoComplete.val();
return link.getNodePathFromLabel(val);
return linkService.getNodePathFromLabel(val);
}
function goToNote() {